Page Time: 1.9543s

Memory: 4.2382 MB (Peak: 5.7554 MB)

Queries (36, time: 1.9031s, 97.4%)

  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.000838
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryALLPRIMARY   34Using where
  2. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000240
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  3.                 			                  SELECT user_point.*
                                                    
                                                    FROM xf_user_point AS user_point
                                                    
                                            WHERE 1=1
    Run Time: 0.005423
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuser_pointALL    10915 
  4. SELECT thread.*
    	,
    		user.gender, user.avatar_date, user.gravatar,
    		NULL AS thread_read_date,
    		0 AS thread_reply_banned,
    		0 AS thread_is_watched,
    		'' AS draft_message, NULL AS draft_extra
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    WHERE thread.thread_id = ?
    Params: 459
    Run Time: 0.001116
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  5. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = forum.node_id)
    WHERE node.node_id = ?
    Params: 36
    Run Time: 0.000512
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  6. 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
    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 < 20) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 459
    Run Time: 0.009334
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrefthread_id_post_date,thread_id_positionthread_id_post_date4const1Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4dien7104_tailieu.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4dien7104_tailieu.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4dien7104_tailieu.post.user_id1 
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22dien7104_tailieu.post.user_id,func1Using where
  7. 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 (605)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.021422
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const4Using index condition; Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4dien7104_tailieu.attachment.data_id1 
  8. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 459
    Run Time: 0.000125
  9. SELECT *
    FROM xf_brivium_extra_thread_item
    WHERE  thread_id = ? AND user_id = ?
    Params: 459, 0
    Run Time: 0.343609
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_brivium_extra_thread_itemALL    25048Using where
  10. SELECT thread.*
    	
    FROM xf_thread AS thread 
    
    WHERE ((thread.discussion_type <> 'redirect') AND (thread.discussion_state = 'visible') AND (thread.post_date < 1526661729)) AND (thread.thread_id <> 459)
    ORDER BY thread.post_date DESC
     LIMIT 5
    Run Time: 0.003021
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangePRIMARY,post_datepost_date4 423Using where
  11. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 33
    Run Time: 0.000257
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  12. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 11
    Run Time: 0.000171
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  13. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 4
    Run Time: 0.000211
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  14. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 7
    Run Time: 0.000173
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  15. SELECT thread.*
    	
    FROM xf_thread AS thread 
    
    WHERE ((thread.discussion_type <> 'redirect') AND (thread.discussion_state = 'visible') AND (thread.post_date > 1526661729)) AND (thread.thread_id <> 459)
    ORDER BY thread.post_date ASC
     LIMIT 5
    Run Time: 0.005415
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangePRIMARY,post_datepost_date4 10935Using index condition; Using where
  16. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 47
    Run Time: 0.000239
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  17. SELECT thread.*
    	
    FROM xf_thread AS thread 
    
    WHERE ((thread.discussion_type <> 'redirect') AND (thread.discussion_state = 'visible')) AND (thread.thread_id <> 459)
    ORDER BY thread.post_date DESC
     LIMIT 5
    Run Time: 0.000370
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadindexPRIMARYpost_date4 5Using where
  18. UPDATE `xf_brivium_extra_thread_item` SET `date_update` = ?, `extra_cache` = ? WHERE (thread_id = 459 AND user_id = 0)
    Params: 1714582090, a:3:{s:12:"olderThreads";a:5:{i:458;a:22:{s:9:"thread_id";i:458;s:7:"node_id";i:33;s:5:"title";s:33:"Cần tìm sách nobel văn học";s:11:"reply_count";i:0;s:10:"view_count";i:971;s:7:"user_id";i:1;s:8:"username";s:5:"admin";s:9:"post_date";i:1526661640;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:604;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1526661640;s:12:"last_post_id";i:604;s:17:"last_post_user_id";i:1;s:18:"last_post_username";s:5:"admin";s:9:"prefix_id";i:1;s:4:"tags";s:287:"a:4:{i:740;a:2:{s:3:"tag";s:4:"2002";s:7:"tag_url";s:4:"2002";}i:881;a:2:{s:3:"tag";s:4:"2010";s:7:"tag_url";s:4:"2010";}i:879;a:2:{s:3:"tag";s:13:"kertész imre";s:7:"tag_url";s:12:"kertesz-imre";}i:880;a:2:{s:3:"tag";s:18:"mario vargas llosa";s:7:"tag_url";s:18:"mario-vargas-llosa";}}";s:13:"titleCensored";b:1;s:10:"hasPreview";b:1;}i:457;a:22:{s:9:"thread_id";i:457;s:7:"node_id";i:11;s:5:"title";s:34:"Kịch chiến giữa voi và hổ";s:11:"reply_count";i:0;s:10:"view_count";i:806;s:7:"user_id";i:1;s:8:"username";s:5:"admin";s:9:"post_date";i:1526661389;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:603;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1526661389;s:12:"last_post_id";i:603;s:17:"last_post_user_id";i:1;s:18:"last_post_username";s:5:"admin";s:9:"prefix_id";i:0;s:4:"tags";s:271:"a:4:{i:877;a:2:{s:3:"tag";s:4:"1904";s:7:"tag_url";s:4:"1904";}i:876;a:2:{s:3:"tag";s:8:"gia long";s:7:"tag_url";s:8:"gia-long";}i:40;a:2:{s:3:"tag";s:7:"lich su";s:7:"tag_url";s:7:"lich-su";}i:878;a:2:{s:3:"tag";s:13:"pierre poivre";s:7:"tag_url";s:13:"pierre-poivre";}}";s:13:"titleCensored";b:1;s:10:"hasPreview";b:1;}i:456;a:22:{s:9:"thread_id";i:456;s:7:"node_id";i:4;s:5:"title";s:76:"Chỉ ngu ngơ mới biết cười | Tao Đàn - Văn Chương Kinh Điển";s:11:"reply_count";i:0;s:10:"view_count";i:1753;s:7:"user_id";i:1;s:8:"username";s:5:"admin";s:9:"post_date";i:1526661220;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:602;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1526661220;s:12:"last_post_id";i:602;s:17:"last_post_user_id";i:1;s:18:"last_post_username";s:5:"admin";s:9:"prefix_id";i:0;s:4:"tags";s:414:"a:6:{i:82;a:2:{s:3:"tag";s:4:"2018";s:7:"tag_url";s:4:"2018";}i:873;a:2:{s:3:"tag";s:13:"edith wharton";s:7:"tag_url";s:13:"edith-wharton";}i:875;a:2:{s:3:"tag";s:6:"ngu co";s:7:"tag_url";s:6:"ngu-co";}i:874;a:2:{s:3:"tag";s:12:"tac pham moi";s:7:"tag_url";s:12:"tac-pham-moi";}i:81;a:2:{s:3:"tag";s:7:"tao dan";s:7:"tag_url";s:7:"tao-dan";}i:153;a:2:{s:3:"tag";s:10:"van chuong";s:7:"tag_url";s:10:"van-chuong";}}";s:13:"titleCensored";b:1;s:10:"hasPreview";b:1;}i:455;a:22:{s:9:"thread_id";i:455;s:7:"node_id";i:11;s:5:"title";s:83:"Hai tác phẩm đầu tay của Nhất Linh: Nho Phong và Người Quay Tơ";s:11:"reply_count";i:0;s:10:"view_count";i:885;s:7:"user_id";i:1;s:8:"username";s:5:"admin";s:9:"post_date";i:1526661083;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:601;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1526661083;s:12:"last_post_id";i:601;s:17:"last_post_user_id";i:1;s:18:"last_post_username";s:5:"admin";s:9:"prefix_id";i:0;s:4:"tags";s:342:"a:5:{i:872;a:2:{s:3:"tag";s:4:"1960";s:7:"tag_url";s:4:"1960";}i:870;a:2:{s:3:"tag";s:13:"nguoi quay to";s:7:"tag_url";s:13:"nguoi-quay-to";}i:868;a:2:{s:3:"tag";s:9:"nhat linh";s:7:"tag_url";s:9:"nhat-linh";}i:869;a:2:{s:3:"tag";s:9:"nho phong";s:7:"tag_url";s:9:"nho-phong";}i:871;a:2:{s:3:"tag";s:7:"sai gon";s:7:"tag_url";s:7:"sai-gon";}}";s:13:"titleCensored";b:1;s:10:"hasPreview";b:1;}i:454;a:22:{s:9:"thread_id";i:454;s:7:"node_id";i:7;s:5:"title";s:52:"Learning to listen 3 + Teacher guide | lin lougheed";s:11:"reply_count";i:0;s:10:"view_count";i:1341;s:7:"user_id";i:1;s:8:"username";s:5:"admin";s:9:"post_date";i:1526660837;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:600;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1526660837;s:12:"last_post_id";i:600;s:17:"last_post_user_id";i:1;s:18:"last_post_username";s:5:"admin";s:9:"prefix_id";i:13;s:4:"tags";s:378:"a:5:{i:866;a:2:{s:3:"tag";s:18:"learning to listen";s:7:"tag_url";s:18:"learning-to-listen";}i:867;a:2:{s:3:"tag";s:12:"lin lougheed";s:7:"tag_url";s:12:"lin-lougheed";}i:864;a:2:{s:3:"tag";s:6:"listen";s:7:"tag_url";s:6:"listen";}i:257;a:2:{s:3:"tag";s:9:"listening";s:7:"tag_url";s:9:"listening";}i:865;a:2:{s:3:"tag";s:13:"teacher guide";s:7:"tag_url";s:13:"teacher-guide";}}";s:13:"titleCensored";b:1;s:10:"hasPreview";b:1;}}s:12:"newerThreads";a:5:{i:460;a:22:{s:9:"thread_id";i:460;s:7:"node_id";i:47;s:5:"title";s:73:"rượu bổ cổ truyền chưa bách bệnh - Hà Kim Sinh biên dịch";s:11:"reply_count";i:0;s:10:"view_count";i:831;s:7:"user_id";i:1;s:8:"username";s:5:"admin";s:9:"post_date";i:1526663547;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:606;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1526663547;s:12:"last_post_id";i:606;s:17:"last_post_user_id";i:1;s:18:"last_post_username";s:5:"admin";s:9:"prefix_id";i:0;s:4:"tags";s:220:"a:3:{i:883;a:2:{s:3:"tag";s:4:"2004";s:7:"tag_url";s:4:"2004";}i:882;a:2:{s:3:"tag";s:20:"nxb the duc the thao";s:7:"tag_url";s:20:"nxb-the-duc-the-thao";}i:884;a:2:{s:3:"tag";s:7:"ruou bo";s:7:"tag_url";s:7:"ruou-bo";}}";s:13:"titleCensored";b:1;s:10:"hasPreview";b:1;}i:461;a:22:{s:9:"thread_id";i:461;s:7:"node_id";i:47;s:5:"title";s:70:"Cải lương hương chính qua tài liệu và tư liệu lưu trữ";s:11:"reply_count";i:0;s:10:"view_count";i:768;s:7:"user_id";i:1;s:8:"username";s:5:"admin";s:9:"post_date";i:1526663592;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:607;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1526663592;s:12:"last_post_id";i:607;s:17:"last_post_user_id";i:1;s:18:"last_post_username";s:5:"admin";s:9:"prefix_id";i:0;s:4:"tags";s:244:"a:3:{i:885;a:2:{s:3:"tag";s:9:"cai luong";s:7:"tag_url";s:9:"cai-luong";}i:887;a:2:{s:3:"tag";s:22:"cuc van thu va luu tru";s:7:"tag_url";s:22:"cuc-van-thu-va-luu-tru";}i:886;a:2:{s:3:"tag";s:11:"huong chinh";s:7:"tag_url";s:11:"huong-chinh";}}";s:13:"titleCensored";b:1;s:10:"hasPreview";b:1;}i:462;a:22:{s:9:"thread_id";i:462;s:7:"node_id";i:47;s:5:"title";s:41:"NGƯỜI ĐÀN ÔNG HÓA THÀNH ĐÀN BÀ";s:11:"reply_count";i:0;s:10:"view_count";i:823;s:7:"user_id";i:1;s:8:"username";s:5:"admin";s:9:"post_date";i:1526663692;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:608;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1526663692;s:12:"last_post_id";i:608;s:17:"last_post_user_id";i:1;s:18:"last_post_username";s:5:"admin";s:9:"prefix_id";i:0;s:4:"tags";s:260:"a:3:{i:890;a:2:{s:3:"tag";s:16:"ernest hemingway";s:7:"tag_url";s:16:"ernest-hemingway";}i:888;a:2:{s:3:"tag";s:17:"sherwood anderson";s:7:"tag_url";s:17:"sherwood-anderson";}i:889;a:2:{s:3:"tag";s:16:"william faulkner";s:7:"tag_url";s:16:"william-faulkner";}}";s:13:"titleCensored";b:1;s:10:"hasPreview";b:1;}i:463;a:22:{s:9:"thread_id";i:463;s:7:"node_id";i:47;s:5:"title";s:26:"HƯƠNG THIỀN NGÀN NĂM";s:11:"reply_count";i:0;s:10:"view_count";i:1083;s:7:"user_id";i:1;s:8:"username";s:5:"admin";s:9:"post_date";i:1526663788;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:609;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1526663788;s:12:"last_post_id";i:609;s:17:"last_post_user_id";i:1;s:18:"last_post_username";s:5:"admin";s:9:"prefix_id";i:0;s:4:"tags";s:911:"a:12:{i:897;a:2:{s:3:"tag";s:8:"khong lo";s:7:"tag_url";s:8:"khong-lo";}i:896;a:2:{s:3:"tag";s:8:"man giac";s:7:"tag_url";s:8:"man-giac";}i:902;a:2:{s:3:"tag";s:15:"phap loa nhi to";s:7:"tag_url";s:15:"phap-loa-nhi-to";}i:891;a:2:{s:3:"tag";s:15:"thich giac toan";s:7:"tag_url";s:15:"thich-giac-toan";}i:892;a:2:{s:3:"tag";s:14:"thich le trang";s:7:"tag_url";s:14:"thich-le-trang";}i:894;a:2:{s:3:"tag";s:9:"thien lao";s:7:"tag_url";s:9:"thien-lao";}i:899;a:2:{s:3:"tag";s:7:"tri bao";s:7:"tag_url";s:7:"tri-bao";}i:901;a:2:{s:3:"tag";s:19:"truc lam dai dau da";s:7:"tag_url";s:19:"truc-lam-dai-dau-da";}i:898;a:2:{s:3:"tag";s:13:"truong nguyen";s:7:"tag_url";s:13:"truong-nguyen";}i:900;a:2:{s:3:"tag";s:19:"tue trung thuong si";s:7:"tag_url";s:19:"tue-trung-thuong-si";}i:893;a:2:{s:3:"tag";s:8:"van hanh";s:7:"tag_url";s:8:"van-hanh";}i:895;a:2:{s:3:"tag";s:10:"vien chieu";s:7:"tag_url";s:10:"vien-chieu";}}";s:13:"titleCensored";b:1;s:10:"hasPreview";b:1;}i:464;a:22:{s:9:"thread_id";i:464;s:7:"node_id";i:47;s:5:"title";s:23:"THIỀN LUẬN - SUZUKI";s:11:"reply_count";i:0;s:10:"view_count";i:1281;s:7:"user_id";i:1;s:8:"username";s:5:"admin";s:9:"post_date";i:1526663868;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:610;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1526663868;s:12:"last_post_id";i:610;s:17:"last_post_user_id";i:1;s:18:"last_post_username";s:5:"admin";s:9:"prefix_id";i:0;s:4:"tags";s:296:"a:4:{i:904;a:2:{s:3:"tag";s:22:"daisetz teitaro suzuki";s:7:"tag_url";s:22:"daisetz-teitaro-suzuki";}i:903;a:2:{s:3:"tag";s:5:"thien";s:7:"tag_url";s:5:"thien";}i:906;a:2:{s:3:"tag";s:10:"truc thien";s:7:"tag_url";s:10:"truc-thien";}i:905;a:2:{s:3:"tag";s:6:"tue sy";s:7:"tag_url";s:6:"tue-sy";}}";s:13:"titleCensored";b:1;s:10:"hasPreview";b:1;}}s:13:"latestThreads";a:5:{i:25520;a:22:{s:9:"thread_id";i:25520;s:7:"node_id";i:11;s:5:"title";s:87:"Hiệu Ứng Người Bảo Trợ: Dạy Chính Mình Bằng Cách Dạy Người Khác";s:11:"reply_count";i:0;s:10:"view_count";i:22;s:7:"user_id";i:3552;s:8:"username";s:7:"mod_van";s:9:"post_date";i:1714517221;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:30509;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1714517221;s:12:"last_post_id";i:30509;s:17:"last_post_user_id";i:3552;s:18:"last_post_username";s:7:"mod_van";s:9:"prefix_id";i:16;s:4:"tags";s:6:"a:0:{}";s:13:"titleCensored";b:1;s:10:"hasPreview";b:1;}i:25519;a:22:{s:9:"thread_id";i:25519;s:7:"node_id";i:11;s:5:"title";s:85:"Nghệ Thuật 'Fake It Till You Make It' Của Huyền Thoại Cờ Vua Thế Giới";s:11:"reply_count";i:0;s:10:"view_count";i:21;s:7:"user_id";i:3552;s:8:"username";s:7:"mod_van";s:9:"post_date";i:1714517172;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:30508;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1714517172;s:12:"last_post_id";i:30508;s:17:"last_post_user_id";i:3552;s:18:"last_post_username";s:7:"mod_van";s:9:"prefix_id";i:16;s:4:"tags";s:6:"a:0:{}";s:13:"titleCensored";b:1;s:10:"hasPreview";b:1;}i:25518;a:22:{s:9:"thread_id";i:25518;s:7:"node_id";i:11;s:5:"title";s:86:"35 BÍ QUYẾT ĐỌC SÁCH MÌNH HỌC ĐƯỢC SAU KHI ĐỌC HƠN 350 CUỐN SÁCH.";s:11:"reply_count";i:0;s:10:"view_count";i:17;s:7:"user_id";i:3552;s:8:"username";s:7:"mod_van";s:9:"post_date";i:1714517111;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:30507;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1714517111;s:12:"last_post_id";i:30507;s:17:"last_post_user_id";i:3552;s:18:"last_post_username";s:7:"mod_van";s:9:"prefix_id";i:16;s:4:"tags";s:6:"a:0:{}";s:13:"titleCensored";b:1;s:10:"hasPreview";b:1;}i:25517;a:22:{s:9:"thread_id";i:25517;s:7:"node_id";i:11;s:5:"title";s:92:"Hiệu Ứng Thỏa Mãn Vượt Ngưỡng (Phần 1): Tiền Có Mua Được Hạnh Phúc?";s:11:"reply_count";i:0;s:10:"view_count";i:20;s:7:"user_id";i:3552;s:8:"username";s:7:"mod_van";s:9:"post_date";i:1714517080;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:30506;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1714517080;s:12:"last_post_id";i:30506;s:17:"last_post_user_id";i:3552;s:18:"last_post_username";s:7:"mod_van";s:9:"prefix_id";i:16;s:4:"tags";s:6:"a:0:{}";s:13:"titleCensored";b:1;s:10:"hasPreview";b:1;}i:25516;a:22:{s:9:"thread_id";i:25516;s:7:"node_id";i:11;s:5:"title";s:56:"VÌ SAO CHÚNG TA KHÔNG LÀM NHỮNG GÌ ĐÃ ĐỀ RA?";s:11:"reply_count";i:0;s:10:"view_count";i:22;s:7:"user_id";i:3552;s:8:"username";s:7:"mod_van";s:9:"post_date";i:1714517042;s:6:"sticky";i:0;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:30505;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1714517042;s:12:"last_post_id";i:30505;s:17:"last_post_user_id";i:3552;s:18:"last_post_username";s:7:"mod_van";s:9:"prefix_id";i:16;s:4:"tags";s:6:"a:0:{}";s:13:"titleCensored";b:1;s:10:"hasPreview";b:1;}}}
    Run Time: 0.648237
  19. SELECT thread.*
    	,
    MATCH(search_index.title) AGAINST ('THÀNH PHỐ VÀ LŨ CHÓ' IN BOOLEAN MODE) AS similar_score
    FROM xf_search_index AS search_index
    	LEFT JOIN xf_thread AS thread ON (thread.thread_id=search_index.content_id)
    	
    WHERE ((thread.discussion_type <> 'redirect') AND (thread.discussion_state = 'visible')) AND (thread.thread_id <> 459)
    AND MATCH(search_index.title) AGAINST ('THÀNH PHỐ VÀ LŨ CHÓ' IN BOOLEAN MODE)
    AND search_index.content_type='thread'
    HAVING similar_score >= 1
    ORDER BY similar_score
     LIMIT 5
    Run Time: 0.383822
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsearch_indexrefPRIMARYPRIMARY77const497Using index condition; Using where; Using temporary; Using filesort
    SIMPLEthreadeq_refPRIMARYPRIMARY4dien7104_tailieu.search_index.content_id1Using where
  20. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 34
    Run Time: 0.000298
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  21. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 29
    Run Time: 0.000234
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  22. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 22
    Run Time: 0.000234
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  23. SELECT thread.thread_id
    FROM xf_thread AS thread
    
    WHERE ((thread.discussion_type <> 'redirect') AND (thread.discussion_state = 'visible')) AND (thread.thread_id <> 459)
    ORDER BY RAND()
     LIMIT 5
    Run Time: 0.200318
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadALLPRIMARY   21870Using where; Using temporary; Using filesort
  24. SELECT thread.*
    	,
    	user.*, IF(user.username IS NULL, thread.username, user.username) AS username
    FROM xf_thread AS thread 
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.user_id)
    WHERE ((thread.discussion_type <> 'redirect') AND (thread.discussion_state = 'visible')) AND (thread.thread_id IN (1661, 22997, 24542, 20262, 21951))
    ORDER BY thread.post_date DESC
     LIMIT 5
    Run Time: 0.058497
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangePRIMARYPRIMARY4 5Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4dien7104_tailieu.thread.user_id1 
  25. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 224
    Run Time: 0.000227
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  26. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 361
    Run Time: 0.000183
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  27. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 217
    Run Time: 0.000191
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  28. SELECT cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = ?
    	AND content_id = ?
    Params: 1, node, 231
    Run Time: 0.000179
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentconstPRIMARYPRIMARY35const,const,const1 
  29. SELECT post_links.*
    	
                        FROM xf_post_links AS post_links
    
                                    WHERE (post_links.thread_id = 459)
    Run Time: 0.209511
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpost_linksALL    25589Using where
  30. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 79cfae25f249200acd02417ff5e2d64e, , 1714585690
    Run Time: 0.000227
  31. 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=459, 1714582090,
    Run Time: 0.000156
  32. 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', 'BRETI_message_below', 'thread_view', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 3, 2
    Run Time: 0.007306
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 10Using where
  33.                 			                  SELECT adv.*
                                                    
                                                    FROM xf_advertisement AS adv
                                                    
                                            WHERE (adv.active = 1) AND (adv.positive = 1)
    Run Time: 0.000305
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEadvALL    5Using where
  34. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('tailieu_advertisement_top')
    	AND style_id = ?
    	AND language_id = ?
    Params: 3, 2
    Run Time: 0.000255
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  35.                 			                  SELECT adv.*
                                                    
                                                    FROM xf_advertisement AS adv
                                                    
                                            WHERE (adv.active = 1) AND (adv.positive = 3)
    Run Time: 0.000246
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEadvALL    5Using where
  36. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('tailieu_advertisement_bottom')
    	AND style_id = ?
    	AND language_id = ?
    Params: 3, 2
    Run Time: 0.000191
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (101, XenForo Classes: 61)

  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/XenForo/Router.php
  33. library/XenForo/Route/Filter.php
  34. library/XenForo/Route/Interface.php
  35. library/XenForo/Route/ResponseSuffix.php
  36. library/XenForo/Route/Prefix.php
  37. library/XenForo/Route/Prefix/Threads.php
  38. library/XenForo/RouteMatch.php
  39. library/XenForo/ControllerPublic/Thread.php
  40. library/XenForo/ControllerPublic/Abstract.php
  41. library/XenForo/Controller.php
  42. library/Brivium/ExtraThreadItem/EventListeners/Listener.php
  43. library/Brivium/BriviumLibrary/EventListeners.php
  44. library/TaiLieu/CustomPost/Listener.php
  45. library/TaiLieu/Trophy/Listener.php
  46. library/Brivium/ExtraThreadItem/ControllerPublic/Thread.php
  47. library/TaiLieu/CustomPost/ControllerPublic/Thread.php
  48. library/TaiLieu/Trophy/ControllerPublic/Thread.php
  49. library/XenForo/Input.php
  50. library/XenForo/Session.php
  51. library/XenForo/Helper/Ip.php
  52. library/XenForo/Visitor.php
  53. library/XenForo/Model/User.php
  54. library/VietXfAdvStats/Listener.php
  55. library/VietXfAdvStats/XenForo/Model/User.php
  56. library/XenForo/Permission.php
  57. library/XenForo/Helper/Php.php
  58. library/XenForo/Phrase.php
  59. library/XenForo/Locale.php
  60. library/TaiLieu/CustomPost/Model/UserPoint.php
  61. library/XenForo/ControllerHelper/ForumThreadPost.php
  62. library/XenForo/ControllerHelper/Abstract.php
  63. library/XenForo/Model/Thread.php
  64. library/VietXfAdvStats/XenForo/Model/Thread.php
  65. library/Brivium/ExtraThreadItem/Model/Thread.php
  66. library/XenForo/Model/Forum.php
  67. library/Brivium/ExtraThreadItem/Model/Forum.php
  68. library/XenForo/Helper/String.php
  69. library/XenForo/Model/Post.php
  70. library/XenForo/Model/Attachment.php
  71. library/XenForo/Route/Prefix/Attachments.php
  72. library/XenForo/Model/Node.php
  73. library/Brivium/ExtraThreadItem/Model/Node.php
  74. library/XenForo/Route/Prefix/Categories.php
  75. library/XenForo/Route/Prefix/Forums.php
  76. library/Brivium/ExtraThreadItem/Model/ExtraThreadItem.php
  77. library/XenForo/Model/PermissionCache.php
  78. library/XenForo/ControllerResponse/View.php
  79. library/XenForo/ControllerResponse/Abstract.php
  80. library/TaiLieu/CustomPost/Model/PostLinks.php
  81. library/XenForo/Helper/Cookie.php
  82. library/XenForo/ViewRenderer/HtmlPublic.php
  83. library/XenForo/ViewRenderer/Abstract.php
  84. library/XenForo/Template/Public.php
  85. library/XenForo/Template/Abstract.php
  86. library/XenForo/ViewPublic/Thread/View.php
  87. library/XenForo/ViewPublic/Base.php
  88. library/XenForo/View.php
  89. library/XenForo/BbCode/Parser.php
  90. library/XenForo/BbCode/Formatter/Base.php
  91. library/XenForo/ViewPublic/Helper/Message.php
  92. library/XenForo/BbCode/TextWrapper.php
  93. library/VietXfAdvStats/Model/GetUserGroup.php
  94. library/XenForo/Route/Prefix/Members.php
  95. library/TaiLieu/Advertisement/Listener.php
  96. library/XenForo/Route/Prefix/Posts.php
  97. library/XenForo/Model/Avatar.php
  98. library/XenForo/Debug.php
  99. library/TaiLieu/Advertisement/Model/Advertisement.php
  100. library/VietXfAdvStats/Option.php
  101. library/XenForo/ViewRenderer/Json.php