Page Time: 4.1842s

Memory: 7.7726 MB (Peak: 9.3895 MB)

Queries (59, time: 4.0107s, 95.9%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000130
    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
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    WHERE thread.thread_id = ?
    Params: 22808
    Run Time: 0.000655
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  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: 26
    Run Time: 0.000812
    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.*,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date,
    		0 AS post_is_watched
    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))
    WHERE post.thread_id = ?
    	 AND (post.position >= 0 AND post.position < 10) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 22808
    Run Time: 0.001961
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 12Using index condition; Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4ccxsccxs_dd.post.user_id1 
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22ccxsccxs_dd.post.user_id,func1Using where
  5. 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 (3244370)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000619
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const2Using index condition; Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4ccxsccxs_dd.attachment.data_id1 
  6. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 22808
    Run Time: 0.000163
  7. SELECT comment.*
    	
    FROM xf_brivium_post_comment AS comment
    
    WHERE comment.comment_id = ?
    Params: 143726
    Run Time: 0.000366
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEcommentconstPRIMARYPRIMARY4const1 
  8. SELECT comment.*
    	,
    		user.*, IF(user.username IS NULL, comment.username, user.username) AS username,
    		0 AS like_date
    FROM xf_brivium_post_comment AS comment
    	
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = comment.user_id)
    WHERE (comment.comment_id IN (143706, 143707, 143618, 143628, 143710, 143726, 143765)) AND (comment.message_state = 'visible')
    ORDER BY comment.post_date
    Run Time: 0.000941
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEcommentrangePRIMARYPRIMARY4 7Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.comment.user_id1 
  9. SELECT comment.*
    	,
    		user.*, IF(user.username IS NULL, comment.username, user.username) AS username,
    		0 AS like_date
    FROM xf_brivium_post_comment AS comment
    	
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = comment.user_id)
    WHERE (comment.post_id = 3244370) AND (comment.post_date >= 1683772741) AND (comment.message_state = 'visible')
    ORDER BY comment.post_date
     LIMIT 10
    Run Time: 0.102061
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEcommentALL    120456Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.comment.user_id1 
  10. SELECT liked_content.*,
    	user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_liked_content AS liked_content
    INNER JOIN xf_user AS user ON
    	(user.user_id = liked_content.like_user_id)
    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 liked_content.content_type = ?
    	AND liked_content.content_id = ?
    ORDER BY liked_content.like_date DESC
    Params: brivium_post_comment, 143706
    Run Time: 0.001299
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEliked_contentrefcontent_type_id_like_user_id,like_user_content_type_idcontent_type_id_like_user_id31const,const2Using index condition; Using where; Using filesort
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
  11. SELECT liked_content.*,
    	user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_liked_content AS liked_content
    INNER JOIN xf_user AS user ON
    	(user.user_id = liked_content.like_user_id)
    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 liked_content.content_type = ?
    	AND liked_content.content_id = ?
    ORDER BY liked_content.like_date DESC
    Params: brivium_post_comment, 143707
    Run Time: 0.001128
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEliked_contentrefcontent_type_id_like_user_id,like_user_content_type_idcontent_type_id_like_user_id31const,const4Using index condition; Using where; Using filesort
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
  12. SELECT liked_content.*,
    	user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_liked_content AS liked_content
    INNER JOIN xf_user AS user ON
    	(user.user_id = liked_content.like_user_id)
    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 liked_content.content_type = ?
    	AND liked_content.content_id = ?
    ORDER BY liked_content.like_date DESC
    Params: brivium_post_comment, 143726
    Run Time: 0.000910
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEliked_contentrefcontent_type_id_like_user_id,like_user_content_type_idcontent_type_id_like_user_id31const,const1Using index condition; Using where; Using filesort
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
  13. SELECT liked_content.*,
    	user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_liked_content AS liked_content
    INNER JOIN xf_user AS user ON
    	(user.user_id = liked_content.like_user_id)
    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 liked_content.content_type = ?
    	AND liked_content.content_id = ?
    ORDER BY liked_content.like_date DESC
    Params: brivium_post_comment, 143765
    Run Time: 0.000889
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEliked_contentrefcontent_type_id_like_user_id,like_user_content_type_idcontent_type_id_like_user_id31const,const1Using index condition; Using where; Using filesort
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4ccxsccxs_dd.liked_content.like_user_id1 
  14. 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=22808, 1711660356,
    Run Time: 0.000531
  15. 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', 'editor', 'thread_view', 'wf_hook_footer', 'wf_hook_moderator_bar', 'dark_taigachat', 'dark_taigachat_list', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 7, 1
    Run Time: 0.000242
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 14Using where
  16. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('BRCEP_write_your_comment')
    Params: 1
    Run Time: 0.000075
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  17. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 97522
    Run Time: 0.000888
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  18. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('BRCEP_post_public_controls')
    	AND style_id = ?
    	AND language_id = ?
    Params: 7, 1
    Run Time: 0.000092
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  19. SELECT * FROM x_post_rule_post WHERE post_id = '3243694'
    Run Time: 0.435695
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    394163Using where
  20. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('VNXF_Loto_Post')
    	AND style_id = ?
    	AND language_id = ?
    Params: 7, 1
    Run Time: 0.000097
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  21. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3243694'
    Run Time: 0.000628
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const16Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  22. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('VNXF_Like_Info')
    	AND style_id = ?
    	AND language_id = ?
    Params: 7, 1
    Run Time: 0.000078
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  23. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 6
    Run Time: 0.001082
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  24. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 45
    Run Time: 0.000610
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  25. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 1953
    Run Time: 0.000609
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  26. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 12978
    Run Time: 0.000575
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  27. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 17814
    Run Time: 0.000568
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  28. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 20521
    Run Time: 0.000568
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  29. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 21002
    Run Time: 0.000584
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  30. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 58830
    Run Time: 0.000394
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  31. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 61097
    Run Time: 0.000588
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  32. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 91037
    Run Time: 0.000602
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  33. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 91732
    Run Time: 0.000778
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  34. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 91872
    Run Time: 0.000880
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  35. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 92216
    Run Time: 0.000586
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  36. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 95617
    Run Time: 0.000579
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  37. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 96904
    Run Time: 0.000571
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  38. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 97096
    Run Time: 0.000574
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  39. SELECT * FROM x_post_rule_post WHERE post_id = '3244370'
    Run Time: 0.385630
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    394163Using where
  40. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3244370'
    Run Time: 0.000495
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const11Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  41. SELECT * FROM x_post_rule_post WHERE post_id = '3259195'
    Run Time: 0.379082
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    394163Using where
  42. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3259195'
    Run Time: 0.000603
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const13Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  43. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 34356
    Run Time: 0.000924
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  44. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 96515
    Run Time: 0.000711
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  45. SELECT * FROM x_post_rule_post WHERE post_id = '3259526'
    Run Time: 0.429637
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    394163Using where
  46. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3259526'
    Run Time: 0.000639
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const11Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  47. SELECT * FROM x_post_rule_post WHERE post_id = '3259888'
    Run Time: 0.393079
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    394163Using where
  48. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3259888'
    Run Time: 0.000577
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const11Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  49. SELECT * FROM x_post_rule_post WHERE post_id = '3259944'
    Run Time: 0.373280
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    394163Using where
  50. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3259944'
    Run Time: 0.001347
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const10Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  51. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache
    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)
    WHERE user.user_id = ?
    Params: 65668
    Run Time: 0.001374
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
  52. SELECT * FROM x_post_rule_post WHERE post_id = '3259991'
    Run Time: 0.460393
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    394163Using where
  53. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3259991'
    Run Time: 0.000563
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const8Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  54. SELECT * FROM x_post_rule_post WHERE post_id = '3259997'
    Run Time: 0.419251
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    394163Using where
  55. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3259997'
    Run Time: 0.000491
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const8Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  56. SELECT * FROM x_post_rule_post WHERE post_id = '3260001'
    Run Time: 0.309726
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    394163Using where
  57. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3260001'
    Run Time: 0.000479
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const8Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 
  58. SELECT * FROM x_post_rule_post WHERE post_id = '3260003'
    Run Time: 0.291358
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEx_post_rule_postALL    394163Using where
  59. SELECT a.*, b.user_id, b.username 
    FROM `xf_liked_content` AS a
    LEFT JOIN xf_user AS b ON (b.user_id = a.like_user_id)
    WHERE a.content_type = 'post' AND a.content_id = '3260003'
    Run Time: 0.000604
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEarefcontent_type_id_like_user_idcontent_type_id_like_user_id31const,const7Using index condition
    SIMPLEbeq_refPRIMARYPRIMARY4ccxsccxs_dd.a.like_user_id1 

Included Files (157, XenForo Classes: 67)

  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/Memcached.php
  20. library/Zend/Cache/Backend/ExtendedInterface.php
  21. library/Zend/Cache/Backend/Interface.php
  22. library/Zend/Cache/Backend.php
  23. library/Zend/Cache/Core.php
  24. library/XenForo/CodeEvent.php
  25. library/XenForo/Options.php
  26. library/XenForo/Link.php
  27. library/XenForo/Template/Helper/Core.php
  28. library/WidgetFramework/Listener.php
  29. library/WidgetFramework/Option.php
  30. library/WidgetFramework/ShippableHelper/Updater.php
  31. library/Brivium/BriviumHelper/EventListeners.php
  32. library/Brivium/BriviumHelper/1010071/EventListeners.php
  33. library/VNXF/Loto/Listener.php
  34. library/UserInfo/Listener.php
  35. library/VietXfAdvStats/Listener.php
  36. library/Dark/TaigaChat/EventListener/Listener.php
  37. library/bdMedal/Listener.php
  38. library/HDJuegos/WaterMarkAdd/Listener.php
  39. library/LiamW/AllRich/Addon.php
  40. library/XenForo/Router.php
  41. library/XenForo/Route/Filter.php
  42. library/XenForo/Route/Interface.php
  43. library/XenForo/Route/ResponseSuffix.php
  44. library/XenForo/Route/Prefix.php
  45. library/XenForo/Route/Prefix/Threads.php
  46. library/vtLai/UrlKhongDau/Listener.php
  47. library/vtLai/UrlKhongDau/Threads.php
  48. library/XenForo/RouteMatch.php
  49. library/XenForo/ControllerPublic/Thread.php
  50. library/XenForo/ControllerPublic/Abstract.php
  51. library/XenForo/Controller.php
  52. library/Vinavb/CustomNodeIcon/Listener.php
  53. library/XenPlaza/XPlimitLink/Listener/Listener.php
  54. library/VNXF/Loto/ControllerPublic/Thread.php
  55. library/WidgetFramework/XenForo/ControllerPublic/Thread.php
  56. library/Brivium/CommentEachPost/ControllerPublic/Thread.php
  57. library/bdMedal/Extend/ControllerPublic/Thread.php
  58. library/XenPlaza/XPlimitLink/ControllerPublic/Thread.php
  59. library/XenForo/Input.php
  60. library/XenForo/Session.php
  61. library/Zend/Db.php
  62. library/Zend/Db/Adapter/Mysqli.php
  63. library/Zend/Db/Adapter/Abstract.php
  64. library/Zend/Db/Select.php
  65. library/Zend/Db/Expr.php
  66. library/Zend/Db/Profiler.php
  67. library/Zend/Db/Statement/Mysqli.php
  68. library/Zend/Db/Statement.php
  69. library/Zend/Db/Statement/Interface.php
  70. library/XenForo/Helper/Ip.php
  71. library/XenForo/Visitor.php
  72. library/XenForo/Model/User.php
  73. library/UserInfo/User.php
  74. library/WidgetFramework/XenForo/Model/User.php
  75. library/VietXfAdvStats/XenForo/Model/User.php
  76. library/Zend/Db/Profiler/Query.php
  77. library/XenForo/Permission.php
  78. library/XenForo/Helper/Php.php
  79. library/XenForo/Phrase.php
  80. library/XenForo/Locale.php
  81. library/XenForo/ControllerHelper/ForumThreadPost.php
  82. library/XenForo/ControllerHelper/Abstract.php
  83. library/XenForo/Model/Thread.php
  84. library/WidgetFramework/XenForo/Model/Thread.php
  85. library/VietXfAdvStats/XenForo/Model/Thread.php
  86. library/XenForo/Model/Forum.php
  87. library/XenForo/Helper/String.php
  88. library/XenForo/Helper/Discussion.php
  89. library/XenForo/Model/Post.php
  90. library/Brivium/CommentEachPost/Model/Post.php
  91. library/vtLai/UrlKhongDau/Converter.php
  92. library/XenForo/Model/Attachment.php
  93. library/Brivium/CommentEachPost/Model/Attachment.php
  94. library/HDJuegos/WaterMarkAdd/ModelOverride/Attachment.php
  95. library/XenForo/Route/Prefix/Attachments.php
  96. library/Brivium/CommentEachPost/Model/Comment.php
  97. library/XenForo/Model/Node.php
  98. library/XenForo/Route/Prefix/Categories.php
  99. library/vtLai/UrlKhongDau/Categories.php
  100. library/XenForo/Route/Prefix/Forums.php
  101. library/vtLai/UrlKhongDau/Forums.php
  102. library/bdMedal/Model/Awarded.php
  103. library/bdMedal/Option.php
  104. library/XenForo/ControllerResponse/View.php
  105. library/XenForo/ControllerResponse/Abstract.php
  106. library/XenForo/Model/Like.php
  107. library/XenForo/Helper/Cookie.php
  108. library/XenForo/ViewRenderer/HtmlPublic.php
  109. library/XenForo/ViewRenderer/Abstract.php
  110. library/XenForo/Template/Public.php
  111. library/XenForo/Template/Abstract.php
  112. library/WidgetFramework/Core.php
  113. library/XenForo/Model/Moderator.php
  114. library/WidgetFramework/Model/Widget.php
  115. library/WidgetFramework/Helper/Sort.php
  116. library/XenForo/ViewPublic/Thread/View.php
  117. library/XenForo/ViewPublic/Base.php
  118. library/XenForo/View.php
  119. library/Dark/ParseHTML/EventListener.php
  120. library/Dark/ParseHTML/ViewPublic/Thread/View.php
  121. library/WidgetFramework/XenForo/View1.php
  122. library/Brivium/CommentEachPost/ViewPublic/Thread/View.php
  123. library/XenForo/BbCode/Parser.php
  124. library/XenForo/BbCode/Formatter/Base.php
  125. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  126. library/Brivium/CommentEachPost/Helper/Render.php
  127. library/XenForo/Route/Prefix/Posts.php
  128. library/XenForo/ViewPublic/Helper/Editor.php
  129. library/VietXfAdvStats/Model/GetUserGroup.php
  130. library/XenForo/ViewPublic/Helper/Message.php
  131. library/XenForo/BbCode/TextWrapper.php
  132. library/Dark/ParseHTML/BbCode/Formatter/Ritsu.php
  133. library/Dark/ParseHTML/BbCode/Parser.php
  134. library/Dark/ParseHTML/ViewPublic/Helper/Message.php
  135. library/Dark/ParseHTML/BbCode/TextWrapper.php
  136. library/XenForo/Route/Prefix/Members.php
  137. library/vtLai/UrlKhongDau/Members.php
  138. library/Dark/TaigaChat/EventListener/NavigationTabs.php
  139. library/WidgetFramework/Template/Extended.php
  140. library/LiamW/AllRich/Template/Helper/Core.php
  141. library/Brivium/CommentEachPost/EventListeners/Listener.php
  142. library/VNXF/LikeInfo/Listener.php
  143. library/Tinhte/Html5Uploader/Listener.php
  144. library/XenForo/Model/Avatar.php
  145. library/XenForo/DataWriter.php
  146. library/VNXF/Loto/Model.php
  147. library/VNXF/LikeInfo/Model.php
  148. library/Brivium/CommentEachPost/Route/Prefix/Comment.php
  149. library/XenForo/ViewRenderer/Json.php
  150. library/bdMedal/Model/Medal.php
  151. library/bdMedal/DataWriter/Medal.php
  152. library/XenForo/ViewPublic/Helper/User.php
  153. library/XenForo/Helper/Criteria.php
  154. library/XenForo/Debug.php
  155. library/VietXfAdvStats/Option.php
  156. library/Tinhte/Html5Uploader/Template.php
  157. library/Vinavb/CustomNodeIcon/Icon.php