Page Time: 0.0781s

Memory: 4.1425 MB (Peak: 5.9506 MB)

Queries (36, time: 0.0282s, 36.1%)

  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.000364
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using where
  2. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('brListenerClasses', 'brBriviumAddOns')
    Run Time: 0.000225
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000110
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  4. SELECT user.*
    	,
    	user_profile.*,
    	user_option.*,
    	user_privacy.*
    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)
    WHERE (user.is_staff = 1)
    ORDER BY user.username ASC
    Run Time: 0.000813
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserrefstaff_usernamestaff_username1const7Using where
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4qbkdcom_new.user.user_id1 
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4qbkdcom_new.user.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4qbkdcom_new.user.user_id1 
  5. SELECT user.*
    	,
    	user_profile.*,
    	user_option.*
    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)
    WHERE user_profile.dob_month = ?
    	AND user_profile.dob_day = ?
    	 AND user_option.show_dob_date = 1
    	AND ((user.last_activity > 1699177151) AND (user.user_state = 'valid') AND (user.is_banned = 0))
    ORDER BY user.username
     LIMIT 12
    Params: 5, 3
    Run Time: 0.001846
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuser_profilerefPRIMARY,dobdob2const,const56Using temporary; Using filesort
    SIMPLEusereq_refPRIMARY,user_state,last_activityPRIMARY4qbkdcom_new.user_profile.user_id1Using where
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4qbkdcom_new.user_profile.user_id1Using where
  6. SELECT user.*
    	
    FROM xf_user AS user
    
    WHERE (user.last_activity > 1699177151) AND (user.user_state = 'valid') AND (user.is_banned = 0)
    ORDER BY user.register_date DESC
     LIMIT 12
    Run Time: 0.000295
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserindexuser_state,last_activityregister_date4 25Using where
  7. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 2c6a6ac3d627969c53d45cb8533692e9, , 1714732751
    Run Time: 0.000113
  8. 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_Member, Index, valid, , 1714729151,
    Run Time: 0.000067
  9. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'wf_widget_wrapper', 'wf_widget_threads', 'wf_widget_online_staff', 'wf_widget_users_find', 'wf_widget_online_users', 'wf_widget_profile_posts', 'wf_widget_birthday', 'wf_widget_stats', 'wf_widget_users', 'wf_widget_facebook_facepile', 'member_notable', 'nat_childlinks')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000463
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 13Using where
  10. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('home')
    Params: 2
    Run Time: 0.000118
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  11. SELECT thread.*
    	,
    	user.*, IF(user.username IS NULL, thread.username, user.username) AS username,
    	node.title AS node_title, node.node_name
    FROM xf_thread AS thread 
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.user_id)
    	LEFT JOIN xf_node AS node ON
    		(node.node_id = thread.node_id)
    WHERE (thread.node_id IN ('54')) AND (thread.discussion_state IN ('visible'))
    ORDER BY thread.post_date DESC
     LIMIT 30
    Run Time: 0.012382
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadindexnode_id_last_post_date,node_id_sticky_state_last_postpost_date4 2706Using where
    SIMPLEusereq_refPRIMARYPRIMARY4qbkdcom_new.thread.user_id1 
    SIMPLEnodeeq_refPRIMARYPRIMARY4qbkdcom_new.thread.node_id1 
  12. SELECT content_id, cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = 'node'
    Params: 1
    Run Time: 0.000399
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentrefPRIMARYPRIMARY31const,const73Using where
  13. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id IN (54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54)
    Run Time: 0.000274
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnoderangePRIMARYPRIMARY4 1Using where
    SIMPLEforumeq_refPRIMARYPRIMARY4qbkdcom_new.node.node_id1 
  14. 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 (374537, 374486, 374443, 374375, 374311, 374218, 374195, 374097, 373688, 373269)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000294
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 10Using index condition; Using temporary; Using filesort
    SIMPLEdataeq_refPRIMARYPRIMARY4qbkdcom_new.attachment.data_id1Using where
  15. SELECT
    	post.*
    	
    FROM xf_post AS post
    WHERE post.post_id IN (374537, 374486, 374443, 374375, 374311, 374218, 374195, 374097, 373688, 373269)
    Run Time: 0.000178
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangePRIMARYPRIMARY4 10Using where
  16. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id = ?
    Params: 54
    Run Time: 0.000210
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
  17. 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 (374537, 374443, 374097)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000229
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 3Using index condition; Using temporary; Using filesort
    SIMPLEdataeq_refPRIMARYPRIMARY4qbkdcom_new.attachment.data_id1Using where
  18. SELECT session_activity.*
    	,
    	user.*
    FROM xf_session_activity AS session_activity
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = session_activity.user_id)
    WHERE (session_activity.view_date > 1714728251)
    ORDER BY session_activity.view_date DESC
    Run Time: 0.001787
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsession_activityrangeview_dateview_date4 302Using where
    SIMPLEusereq_refPRIMARYPRIMARY4qbkdcom_new.session_activity.user_id1 
  19. SELECT session_activity.*
    	,
    	user.*
    FROM xf_session_activity AS session_activity
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = session_activity.user_id)
    WHERE (session_activity.view_date > 1714728251)
    ORDER BY session_activity.view_date DESC
    Run Time: 0.001803
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsession_activityrangeview_dateview_date4 302Using where
    SIMPLEusereq_refPRIMARYPRIMARY4qbkdcom_new.session_activity.user_id1 
  20. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc__1_member_notable', 'wfc_5cf4e630dacf2efe5e661', 'wfc_1ba364531eabedf893b81')
    Run Time: 0.000993
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 3Using where
  21. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc_6c92583725fadf4e39d80')
    Run Time: 0.000304
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  22. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_6c92583725fadf4e39d80, a:2:{s:22:"member_notable_lock_10";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1714715149;}s:21:"member_notable_lock_6";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1714729151;}}
    Run Time: 0.000151
  23. SELECT profile_post.*
    	,
    	posting_user.*,
    	IF(posting_user.username IS NULL, profile_post.username, posting_user.username) AS username,
    	receiving_user.username
    		AS profile_username,
    	receiving_user.gender
    		AS profile_gender,
    	receiving_user.user_state
    		AS profile_user_state,
    	receiving_user.user_group_id
    		AS profile_user_group_id,
    	receiving_user.secondary_group_ids
    		AS profile_secondary_group_ids,
    	receiving_user.display_style_group_id
    		AS profile_display_style_group_id,
    	receiving_user.is_banned
    		AS profile_is_banned,
    	receiving_user.is_admin
    		AS profile_is_admin,
    	receiving_user.is_moderator
    		AS profile_is_moderator,
    	receiving_user.avatar_date
    		AS profile_avatar_date,
    	receiving_user.gravatar
    		AS profile_gravatar,
    	receiving_user.warning_points
    		AS profile_warning_points,
    	receiving_user.permission_combination_id
    		AS profile_permission_combination_id,
    	receiving_user_privacy.allow_view_profile
    		AS profile_allow_view_profile,
    	receiving_user_privacy.allow_post_profile
    		AS profile_allow_post_profile,
    	receiving_user_privacy.allow_send_personal_conversation
    		AS profile_allow_send_personal_conversation,
    	receiving_user_privacy.allow_view_identities
    		AS profile_allow_view_identities,
    	receiving_user_privacy.allow_receive_news_feed
    		AS profile_allow_allow_receive_news_feed,
    	IF (receiving_user_follow.follow_user_id, 1, 0)
    		AS following_0
    FROM xf_profile_post AS profile_post
    
    	LEFT JOIN xf_user AS posting_user ON
    		(posting_user.user_id = profile_post.user_id)
    	LEFT JOIN xf_user AS receiving_user ON
    		(receiving_user.user_id = profile_post.profile_user_id)
    	LEFT JOIN xf_user_privacy AS receiving_user_privacy ON
    		(receiving_user_privacy.user_id = profile_post.profile_user_id)
    	LEFT JOIN xf_user_follow AS receiving_user_follow ON
    		(receiving_user_follow.user_id = profile_post.profile_user_id AND follow_user_id = 0)
    WHERE (profile_post.message_state IN ('visible'))
    ORDER BY profile_post.post_date DESC
     LIMIT 15
    Run Time: 0.000880
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEprofile_postALL    400Using where; Using filesort
    SIMPLEposting_usereq_refPRIMARYPRIMARY4qbkdcom_new.profile_post.user_id1 
    SIMPLEreceiving_usereq_refPRIMARYPRIMARY4qbkdcom_new.profile_post.profile_user_id1 
    SIMPLEreceiving_user_privacyeq_refPRIMARYPRIMARY4qbkdcom_new.profile_post.profile_user_id1 
    SIMPLEreceiving_user_followeq_refPRIMARY,follow_user_idPRIMARY8qbkdcom_new.profile_post.profile_user_id,const1Using index
  24. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_member_notable, a:2:{s:17:"member_notable_10";a:2:{s:4:"html";s:2346:"<div class="avatarList"> <ul> <li class="user-3321"> <a href="members/ehomepirevietnam.3321/" class="avatar Av3321s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="ehomepirevietnam" /></a> <a href="members/ehomepirevietnam.3321/" class="username" dir="auto"><span class="style4">ehomepirevietnam</span></a> <div class="userTitle">Moderator</div> </li> <li class="user-66"> <a href="members/khuc-thanh-thang.66/" class="avatar Av66s" data-avatarhtml="true"><img src="data/avatars/s/0/66.jpg?1550391555" width="48" height="48" alt="Khúc Thành Thắng" /></a> <a href="members/khuc-thanh-thang.66/" class="username" dir="auto"><span class="style3">Khúc Thành Thắng</span></a> <div class="userTitle">Quảng Bá Kinh Doanh</div> </li> <li class="user-11"> <a href="members/otozin.11/" class="avatar Av11s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="otozin" /></a> <a href="members/otozin.11/" class="username" dir="auto"><span class="style2">otozin</span></a> <div class="userTitle">Thành viên</div> </li> <li class="user-59"> <a href="members/quangbakinhdoanh.59/" class="avatar Av59s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="quangbakinhdoanh" /></a> <a href="members/quangbakinhdoanh.59/" class="username" dir="auto"><span class="style4">quangbakinhdoanh</span></a> <div class="userTitle">Moderator</div> </li> <li class="user-61"> <a href="members/quyet.61/" class="avatar Av61s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_s.png" width="48" height="48" alt="quyet" /></a> <a href="members/quyet.61/" class="username" dir="auto"><span class="style3">quyet</span></a> <div class="userTitle">Quảng Bá Kinh Doanh</div> </li> </ul> </div>";s:4:"time";i:1714715149;}s:16:"member_notable_6";a:3:{s:4:"html";s:6184:"<ul class="WidgetFramework_WidgetRenderer_ProfilePosts_ProfilePostList"> <li id="profile-post-481" class="profilePostListItem " data-author="bvdkdonganhcom"> <a href="members/bvdkdonganhcom.10280/" class="avatar Av10280s" data-avatarhtml="true"><img src="data/avatars/s/10/10280.jpg?1714583599" width="48" height="48" alt="bvdkdonganhcom" /></a> <div class="messageInfo"> <div class="messageContent"> <span class="poster"> <a href="members/bvdkdonganhcom.10280/" class="username" dir="auto"><span class="style2">bvdkdonganhcom</span></a> </span> <article><blockquote class="ugc baseHtml"><a href="https://bvdkdonganh.com" rel="nofollow" class="externalLink" target="_blank">https://bvdkdonganh.com</a> - Là nơi chuẩn đoán khám bệnh và đưa ra những phương pháp điều trị các bệnh phổ biến ở Việt Nam.</blockquote></article> </div> <div class="messageMeta"> <div class="privateControls"> <a href="profile-posts/481/" title="Permalink" class="item muted"><abbr class="DateTime" data-time="1714583652" data-diff="145499" data-datestring="2/5/24" data-timestring="00:14">2/5/24 lúc 00:14</abbr></a> </div> <div class="publicControls"> <a href="profile-posts/481/" class="item Tooltip OverlayTrigger" title="Tương tác" data-tipclass="flipped" data-offsetX="7" data-offsetY="-7">&#8226;&#8226;&#8226;</a> </div> </div> </div> </li> <li id="profile-post-480" class="profilePostListItem " data-author="bvdkdonganhcom"> <a href="members/bvdkdonganhcom.10280/" class="avatar Av10280s" data-avatarhtml="true"><img src="data/avatars/s/10/10280.jpg?1714583599" width="48" height="48" alt="bvdkdonganhcom" /></a> <div class="messageInfo"> <div class="messageContent"> <span class="poster"> <a href="members/bvdkdonganhcom.10280/" class="username" dir="auto"><span class="style2">bvdkdonganhcom</span></a> </span> <article><blockquote class="ugc baseHtml"><a href="https://bvdkdonganh.com" rel="nofollow" class="externalLink" target="_blank">https://bvdkdonganh.com</a> - Là nơi chuẩn đoán khám bệnh và đưa ra những phương pháp điều trị các bệnh phổ biến ở Việt Nam.</blockquote></article> </div> <div class="messageMeta"> <div class="privateControls"> <a href="profile-posts/480/" title="Permalink" class="item muted"><abbr class="DateTime" data-time="1714583619" data-diff="145532" data-datestring="2/5/24" data-timestring="00:13">2/5/24 lúc 00:13</abbr></a> </div> <div class="publicControls"> <a href="profile-posts/480/" class="item Tooltip OverlayTrigger" title="Tương tác" data-tipclass="flipped" data-offsetX="7" data-offsetY="-7">&#8226;&#8226;&#8226;</a> </div> </div> </div> </li> <li id="profile-post-479" class="profilePostListItem " data-author="Jonhseen"> <a href="members/jonhseen.10078/" class="avatar Av10078s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Jonhseen" /></a> <div class="messageInfo"> <div class="messageContent"> <span class="poster"> <a href="members/jonhseen.10078/" class="username" dir="auto"><span class="style2">Jonhseen</span></a> </span> <article><blockquote class="ugc baseHtml">zxaxasdasdasx</blockquote></article> </div> <div class="messageMeta"> <div class="privateControls"> <a href="profile-posts/479/" title="Permalink" class="item muted"><span class="DateTime" title="23/4/24 lúc 01:01">23/4/24</span></a> </div> <div class="publicControls"> <a href="profile-posts/479/" class="item Tooltip OverlayTrigger" title="Tương tác" data-tipclass="flipped" data-offsetX="7" data-offsetY="-7">&#8226;&#8226;&#8226;</a> </div> </div> </div> </li> <li id="profile-post-478" class="profilePostListItem " data-author="Icecricnews"> <a href="members/icecricnews.9943/" class="avatar Av9943s" data-avatarhtml="true"><img src="data/avatars/s/9/9943.jpg?1713273500" width="48" height="48" alt="Icecricnews" /></a> <div class="messageInfo"> <div class="messageContent"> <span class="poster"> <a href="members/icecricnews.9943/" class="username" dir="auto"><span class="style2">Icecricnews</span></a> </span> <article><blockquote class="ugc baseHtml"><a href="https://www.icecric.news/gt-vs-dc-match-highlights-and-report-ipl/" rel="nofollow" class="externalLink" target="_blank">https://www.icecric.news/gt-vs-dc-match-highlights-and-report-ipl/</a></blockquote></article> </div> <div class="messageMeta"> <div class="privateControls"> <a href="profile-posts/478/" title="Permalink" class="item muted"><span class="DateTime" title="18/4/24 lúc 19:53">18/4/24</span></a> </div> <div class="publicControls"> <a href="profile-posts/478/" class="item Tooltip OverlayTrigger" title="Tương tác" data-tipclass="flipped" data-offsetX="7" data-offsetY="-7">&#8226;&#8226;&#8226;</a> </div> </div> </div> </li> <li id="profile-post-477" class="profilePostListItem " data-author="Viecoi"> <a href="members/viecoi.9965/" class="avatar Av9965s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_s.png" width="48" height="48" alt="Viecoi" /></a> <div class="messageInfo"> <div class="messageContent"> <span class="poster"> <a href="members/viecoi.9965/" class="username" dir="auto"><span class="style2">Viecoi</span></a> </span> <article><blockquote class="ugc baseHtml">Tìm việc làm: <a href="https://viecoi.vn/" rel="nofollow" class="externalLink" target="_blank">https://viecoi.vn/</a></blockquote></article> </div> <div class="messageMeta"> <div class="privateControls"> <a href="profile-posts/477/" title="Permalink" class="item muted"><span class="DateTime" title="17/4/24 lúc 17:33">17/4/24</span></a> </div> <div class="publicControls"> <a href="profile-posts/477/" class="item Tooltip OverlayTrigger" title="Tương tác" data-tipclass="flipped" data-offsetX="7" data-offsetY="-7">&#8226;&#8226;&#8226;</a> </div> </div> </div> </li> </ul>";s:4:"time";i:1714729151;s:9:"extraData";a:1:{s:17:"requiredExternals";a:1:{s:3:"css";a:10:{i:0;s:24:"profile_post_list_simple";i:1;s:7:"bb_code";i:2;s:24:"profile_post_list_simple";i:3;s:7:"bb_code";i:4;s:24:"profile_post_list_simple";i:5;s:7:"bb_code";i:6;s:24:"profile_post_list_simple";i:7;s:7:"bb_code";i:8;s:24:"profile_post_list_simple";i:9;s:7:"bb_code";}}}}}
    Run Time: 0.000203
  25. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_6c92583725fadf4e39d80, a:2:{s:22:"member_notable_lock_10";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1714715149;}s:21:"member_notable_lock_6";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1714729151;}}
    Run Time: 0.000101
  26. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc_8dd46f3004071e41e681b')
    Run Time: 0.000288
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  27. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_8dd46f3004071e41e681b, a:1:{s:27:"member_notable_lock_25200_9";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1714729151;}}
    Run Time: 0.000102
  28. SELECT user.*
    	,
    	user_profile.*,
    	user_option.*
    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)
    WHERE ((user.user_state = 'valid') AND (user.is_banned = 0)) AND (((user_profile.dob_day = '03' AND user_profile.dob_month = '05'))) AND (user_option.show_dob_date = 1)
    ORDER BY user.username ASC
    Run Time: 0.001799
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuser_profilerefPRIMARY,dobdob2const,const56Using temporary; Using filesort
    SIMPLEusereq_refPRIMARY,user_statePRIMARY4qbkdcom_new.user_profile.user_id1Using where
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4qbkdcom_new.user_profile.user_id1Using where
  29. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_5cf4e630dacf2efe5e661, a:1:{s:22:"member_notable_25200_9";a:2:{s:4:"html";s:14551:"<h4 class="minorHeading">Today is 52 people's birthday.</h4> <ul class="followedOnline"> <li title="Alisoeill" class="Tooltip user-4092"> <a href="members/alisoeill.4092/" class="avatar Av4092s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Alisoeill" /></a> </li> <li title="AlphaHeater2023" class="Tooltip user-7196"> <a href="members/alphaheater2023.7196/" class="avatar Av7196s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="AlphaHeater2023" /></a> </li> <li title="AshleyEstesi" class="Tooltip user-6024"> <a href="members/ashleyestesi.6024/" class="avatar Av6024s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="AshleyEstesi" /></a> </li> <li title="BioblendCBD2023" class="Tooltip user-6717"> <a href="members/bioblendcbd2023.6717/" class="avatar Av6717s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="BioblendCBD2023" /></a> </li> <li title="BiolyfeketoGummy" class="Tooltip user-5817"> <a href="members/biolyfeketogummy.5817/" class="avatar Av5817s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="BiolyfeketoGummy" /></a> </li> <li title="BlueVibe2023" class="Tooltip user-6839"> <a href="members/bluevibe2023.6839/" class="avatar Av6839s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="BlueVibe2023" /></a> </li> <li title="BlueViboffers" class="Tooltip user-7176"> <a href="members/blueviboffers.7176/" class="avatar Av7176s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_s.png" width="48" height="48" alt="BlueViboffers" /></a> </li> <li title="bullun" class="Tooltip user-3007"> <a href="members/bullun.3007/" class="avatar Av3007s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="bullun" /></a> </li> <li title="CaitlinBonors" class="Tooltip user-6835"> <a href="members/caitlinbonors.6835/" class="avatar Av6835s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="CaitlinBonors" /></a> </li> <li title="CaroliTucker" class="Tooltip user-4011"> <a href="members/carolitucker.4011/" class="avatar Av4011s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="CaroliTucker" /></a> </li> <li title="CharliBadger" class="Tooltip user-6258"> <a href="members/charlibadger.6258/" class="avatar Av6258s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="CharliBadger" /></a> </li> <li title="chiasebaihay" class="Tooltip user-3254"> <a href="members/chiasebaihay.3254/" class="avatar Av3254s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="chiasebaihay" /></a> </li> <li title="ChoiceCBD2023" class="Tooltip user-6051"> <a href="members/choicecbd2023.6051/" class="avatar Av6051s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="ChoiceCBD2023" /></a> </li> <li title="ChoiceCBDOffers" class="Tooltip user-5725"> <a href="members/choicecbdoffers.5725/" class="avatar Av5725s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="ChoiceCBDOffers" /></a> </li> <li title="CurtisFederi" class="Tooltip user-3827"> <a href="members/curtisfederi.3827/" class="avatar Av3827s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="CurtisFederi" /></a> </li> <li title="DarlenMedra" class="Tooltip user-6581"> <a href="members/darlenmedra.6581/" class="avatar Av6581s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="DarlenMedra" /></a> </li> <li title="ElizaMayor" class="Tooltip user-4116"> <a href="members/elizamayor.4116/" class="avatar Av4116s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="ElizaMayor" /></a> </li> <li title="EvergreenCBDGummi" class="Tooltip user-6704"> <a href="members/evergreencbdgummi.6704/" class="avatar Av6704s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="EvergreenCBDGummi" /></a> </li> <li title="EvergreenCBDReview" class="Tooltip user-6783"> <a href="members/evergreencbdreview.6783/" class="avatar Av6783s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="EvergreenCBDReview" /></a> </li> <li title="EvergreenGummyUS" class="Tooltip user-6848"> <a href="members/evergreengummyus.6848/" class="avatar Av6848s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="EvergreenGummyUS" /></a> </li> <li title="GreenhouseCBDGummyUS" class="Tooltip user-6532"> <a href="members/greenhousecbdgummyus.6532/" class="avatar Av6532s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="GreenhouseCBDGummyUS" /></a> </li> <li title="HawinsMitto" class="Tooltip user-4036"> <a href="members/hawinsmitto.4036/" class="avatar Av4036s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="HawinsMitto" /></a> </li> <li title="HeggyMoney" class="Tooltip user-7001"> <a href="members/heggymoney.7001/" class="avatar Av7001s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="HeggyMoney" /></a> </li> <li title="KenethTomas" class="Tooltip user-5590"> <a href="members/kenethtomas.5590/" class="avatar Av5590s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="KenethTomas" /></a> </li> <li title="KlausWini" class="Tooltip user-10246"> <a href="members/klauswini.10246/" class="avatar Av10246s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="KlausWini" /></a> </li> <li title="KnersoMason" class="Tooltip user-4127"> <a href="members/knersomason.4127/" class="avatar Av4127s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="KnersoMason" /></a> </li> <li title="KrittsZouts" class="Tooltip user-6802"> <a href="members/krittszouts.6802/" class="avatar Av6802s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="KrittsZouts" /></a> </li> <li title="LisaYoao" class="Tooltip user-6675"> <a href="members/lisayoao.6675/" class="avatar Av6675s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_s.png" width="48" height="48" alt="LisaYoao" /></a> </li> <li title="LredrHall" class="Tooltip user-4049"> <a href="members/lredrhall.4049/" class="avatar Av4049s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="LredrHall" /></a> </li> <li title="MargarBoard" class="Tooltip user-3886"> <a href="members/margarboard.3886/" class="avatar Av3886s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="MargarBoard" /></a> </li> <li title="MarilyCumber" class="Tooltip user-6519"> <a href="members/marilycumber.6519/" class="avatar Av6519s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="MarilyCumber" /></a> </li> <li title="MarioiNelson" class="Tooltip user-3813"> <a href="members/marioinelson.3813/" class="avatar Av3813s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="MarioiNelson" /></a> </li> <li title="MaureMuhall" class="Tooltip user-4081"> <a href="members/mauremuhall.4081/" class="avatar Av4081s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="MaureMuhall" /></a> </li> <li title="MichaMason" class="Tooltip user-5783"> <a href="members/michamason.5783/" class="avatar Av5783s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="MichaMason" /></a> </li> <li title="MonicRodger" class="Tooltip user-4022"> <a href="members/monicrodger.4022/" class="avatar Av4022s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="MonicRodger" /></a> </li> <li title="Naturalblisscbdgummbuy" class="Tooltip user-7369"> <a href="members/naturalblisscbdgummbuy.7369/" class="avatar Av7369s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="Naturalblisscbdgummbuy" /></a> </li> <li title="PowerCBDGummy2023" class="Tooltip user-6088"> <a href="members/powercbdgummy2023.6088/" class="avatar Av6088s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="PowerCBDGummy2023" /></a> </li> <li title="PowerCBDGummyBuy" class="Tooltip user-6039"> <a href="members/powercbdgummybuy.6039/" class="avatar Av6039s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="PowerCBDGummyBuy" /></a> </li> <li title="PowerGummyUS" class="Tooltip user-7336"> <a href="members/powergummyus.7336/" class="avatar Av7336s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="PowerGummyUS" /></a> </li> <li title="PureKanaGummyUS" class="Tooltip user-6133"> <a href="members/purekanagummyus.6133/" class="avatar Av6133s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="PureKanaGummyUS" /></a> </li> <li title="RejuvenateCBDUS" class="Tooltip user-7344"> <a href="members/rejuvenatecbdus.7344/" class="avatar Av7344s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="RejuvenateCBDUS" /></a> </li> <li title="RickyBysen" class="Tooltip user-6380"> <a href="members/rickybysen.6380/" class="avatar Av6380s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="RickyBysen" /></a> </li> <li title="SusanWadle" class="Tooltip user-5466"> <a href="members/susanwadle.5466/" class="avatar Av5466s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="SusanWadle" /></a> </li> <li title="SynogutsUS" class="Tooltip user-6495"> <a href="members/synogutsus.6495/" class="avatar Av6495s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="SynogutsUS" /></a> </li> <li title="TrufarmCBD" class="Tooltip user-5789"> <a href="members/trufarmcbd.5789/" class="avatar Av5789s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="TrufarmCBD" /></a> </li> <li title="TruthCBDGummy2023" class="Tooltip user-6196"> <a href="members/truthcbdgummy2023.6196/" class="avatar Av6196s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="TruthCBDGummy2023" /></a> </li> <li title="TruthCBDus" class="Tooltip user-6485"> <a href="members/truthcbdus.6485/" class="avatar Av6485s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="TruthCBDus" /></a> </li> <li title="vangbacdep" class="Tooltip user-3215"> <a href="members/vangbacdep.3215/" class="avatar Av3215s _plainImage" data-avatarhtml="true"><img src="data/avatars/s/3/3215.jpg?1630399550" width="48" height="48" alt="vangbacdep" /></a> </li> <li title="ViaCBDGummy" class="Tooltip user-6260"> <a href="members/viacbdgummy.6260/" class="avatar Av6260s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="ViaCBDGummy" /></a> </li> <li title="Vitimes.today" class="Tooltip user-2592"> <a href="members/vitimes-today.2592/" class="avatar Av2592s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="Vitimes.today" /></a> </li> <li title="WamplFlowcrs" class="Tooltip user-4065"> <a href="members/wamplflowcrs.4065/" class="avatar Av4065s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="WamplFlowcrs" /></a> </li> <li title="Wellnesspeakcbdgumf" class="Tooltip user-7391"> <a href="members/wellnesspeakcbdgumf.7391/" class="avatar Av7391s _plainImage" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="Wellnesspeakcbdgumf" /></a> </li> </ul>";s:4:"time";i:1714729151;}}
    Run Time: 0.000496
  30. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc_8dd46f3004071e41e681b, a:1:{s:27:"member_notable_lock_25200_9";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1714729151;}}
    Run Time: 0.000108
  31. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: boardTotals
    Run Time: 0.000117
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  32. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('staff_online_now', 'find_member', 'members_online_now', 'birthday', 'forum_statistics', 'staff_members')
    Params: 2
    Run Time: 0.000167
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledrangePRIMARYPRIMARY106 6Using where
  33. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('EWRporta_Navtabs', 'nat_linkstemplate', 'xm_widgets_threads', 'wf_hook_moderator_bar', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000196
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 5Using where
  34. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('BRME_page_container_head')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000121
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  35. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('nat_bodyjs')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000117
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  36. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('VigLink')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000115
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (179, 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/Hex/Listener/InitDependencies.php
  33. library/Hex/Listener/InitDependencies/20150212.php
  34. library/Hex/Listener/ControllerPreDispatch/20150911.php
  35. library/Brivium/BriviumHelper/EventListeners.php
  36. library/Brivium/BriviumHelper/1010071/EventListeners.php
  37. library/EWRporta/Listener/Model.php
  38. library/Brivium/ThreadClassified/EventListeners/Listener.php
  39. library/HDJuegos/WaterMarkAdd/Listener.php
  40. library/WidgetFramework/Listener.php
  41. library/Waindigo/Listener/InitDependencies.php
  42. library/Waindigo/Listener/InitDependencies/20150212.php
  43. library/Waindigo/Listener/ControllerPreDispatch/20150212.php
  44. library/NodesAsTabs/Listen.php
  45. library/WidgetFramework/Option.php
  46. library/Sedo/TinyQuattro/Listener/AllInOne.php
  47. library/XenForo/Router.php
  48. library/XenForo/Route/Filter.php
  49. library/XenForo/Route/Interface.php
  50. library/XenForo/Route/ResponseSuffix.php
  51. library/XenForo/Route/Prefix.php
  52. library/Waindigo/ShorterRoutes/Listener/InitRouterPublic.php
  53. library/Waindigo/ShorterRoutes/Route/ShorterRoute.php
  54. library/XenForo/Route/Prefix/Members.php
  55. library/EWRporta/Listener/Route.php
  56. library/vtLai/UrlKhongDau/Listener.php
  57. library/vtLai/UrlKhongDau/Members.php
  58. library/XenForo/RouteMatch.php
  59. library/XenForo/ControllerPublic/Member.php
  60. library/XenForo/ControllerPublic/Abstract.php
  61. library/XenForo/Controller.php
  62. library/EWRporta/Listener/Controller.php
  63. library/Vinavb/CustomNodeIcon/Listener.php
  64. library/XenForo/Input.php
  65. library/XenForo/Session.php
  66. library/XenForo/Helper/Ip.php
  67. library/XenForo/Visitor.php
  68. library/XenForo/Model/User.php
  69. library/WidgetFramework/XenForo/Model/User.php
  70. library/XenForo/Permission.php
  71. library/XenForo/Helper/Php.php
  72. library/XenForo/Phrase.php
  73. library/XenForo/Locale.php
  74. library/XenForo/ControllerResponse/View.php
  75. library/XenForo/ControllerResponse/Abstract.php
  76. library/XenForo/Helper/Cookie.php
  77. library/XenForo/ViewRenderer/HtmlPublic.php
  78. library/XenForo/ViewRenderer/Abstract.php
  79. library/XenForo/Template/Public.php
  80. library/XenForo/Template/Abstract.php
  81. library/WidgetFramework/Core.php
  82. library/XenForo/Model/Moderator.php
  83. library/XMWidgets/Listen.php
  84. library/WidgetFramework/Model/Widget.php
  85. library/WidgetFramework/Helper/LayoutEditor.php
  86. library/WidgetFramework/Helper/Sort.php
  87. library/EWRporta/Listener/ViewPublic.php
  88. library/XenForo/ViewPublic/Base.php
  89. library/XenForo/View.php
  90. library/WidgetFramework/XenForo/View1.php
  91. library/Brivium/MetadataEssential/EventListeners/Listener.php
  92. library/Hex/Thumbnails/Listener/TemplateCreate.php
  93. library/Hex/Listener/TemplateCreate.php
  94. library/Hex/Listener/TemplateCreate/20150106.php
  95. library/vtLai/TopX/Listener.php
  96. library/WidgetFramework/WidgetRenderer.php
  97. library/WidgetFramework/WidgetRenderer/HtmlWithoutWrapper.php
  98. library/WidgetFramework/WidgetRenderer/Html.php
  99. library/WidgetFramework/WidgetRenderer/Threads.php
  100. library/Hex/Thumbnails/Listener/LoadClass.php
  101. library/Hex/Listener/LoadClass.php
  102. library/Hex/Listener/LoadClass/20150518.php
  103. library/Hex/Thumbnails/Extend/WidgetFramework/WidgetRenderer/Threads.php
  104. library/WidgetFramework/WidgetRenderer/Empty.php
  105. library/WidgetFramework/WidgetRenderer/OnlineStaff.php
  106. library/WidgetFramework/WidgetRenderer/UsersFind.php
  107. library/WidgetFramework/WidgetRenderer/OnlineUsers.php
  108. library/WidgetFramework/WidgetRenderer/ProfilePosts.php
  109. library/WidgetFramework/Model/Cache.php
  110. library/WidgetFramework/WidgetRenderer/Birthday.php
  111. library/WidgetFramework/WidgetRenderer/Stats.php
  112. library/WidgetFramework/WidgetRenderer/UsersStaff.php
  113. library/WidgetFramework/WidgetRenderer/FacebookFacepile.php
  114. library/EWRporta/Listener/NavTabs.php
  115. library/EWRporta/Model/Perms.php
  116. library/NodesAsTabs/NavTabs.php
  117. library/NodesAsTabs/Model/Options.php
  118. library/XenForo/Model/Node.php
  119. library/Hex/Thumbnails/Extend/XenForo/Model/Node.php
  120. library/XenForo/Route/Prefix/Forums.php
  121. library/Waindigo/ShorterRoutes/Listener/LoadClass.php
  122. library/Waindigo/Listener/LoadClass.php
  123. library/Waindigo/Listener/LoadClass/20150106.php
  124. library/Waindigo/ShorterRoutes/Extend/XenForo/Route/Prefix/Forums.php
  125. library/vtLai/UrlKhongDau/Forums.php
  126. library/vtLai/UrlKhongDau/Converter.php
  127. library/Waindigo/ShorterRoutes/Link.php
  128. library/Hex/Thumbnails/Listener/TemplatePostRender.php
  129. library/Hex/Listener/TemplatePostRender.php
  130. library/Hex/Listener/TemplatePostRender/20150106.php
  131. library/Hex/Listener/Template.php
  132. library/Hex/Listener/Template/20150106.php
  133. library/XenForo/Route/Prefix/Categories.php
  134. library/vtLai/UrlKhongDau/Categories.php
  135. library/XMWidgets/Threads/Main.php
  136. library/WidgetFramework/Template/Extended.php
  137. library/Sedo/TinyQuattro/Listener/Templates/Preloader.php
  138. library/Sedo/TinyQuattro/Helper/Quattro.php
  139. library/XenForo/Helper/String.php
  140. library/XenForo/Model/UserProfile.php
  141. library/WidgetFramework/Helper/String.php
  142. library/XenForo/Model/Thread.php
  143. library/Brivium/ThreadClassified/Model/Thread.php
  144. library/WidgetFramework/XenForo/Model/Thread.php
  145. library/XenForo/Model/Forum.php
  146. library/XenForo/Model/Post.php
  147. library/EWRporta/Model/Post.php
  148. library/Hex/Thumbnails/Model/Thumbnails.php
  149. library/XenForo/Model/Attachment.php
  150. library/Hex/Thumbnails/Extend/XenForo/Model/Attachment.php
  151. library/EWRporta/Model/Attachment.php
  152. library/HDJuegos/WaterMarkAdd/ModelOverride/Attachment.php
  153. library/XenForo/DataWriter.php
  154. library/XenForo/DataWriter/Forum.php
  155. library/XenForo/DataWriter/Node.php
  156. library/XenForo/DataWriter/DiscussionContainerInterface.php
  157. library/EWRporta/Listener/DataWriter.php
  158. library/Hex/Thumbnails/Extend/XenForo/DataWriter/Forum.php
  159. library/Brivium/MetadataEssential/DataWriter/Forum.php
  160. library/Vinavb/CustomNodeIcon/XenForo/DataWriter/Forum.php
  161. library/XenForo/Model/Avatar.php
  162. library/XenForo/Route/Prefix/Threads.php
  163. library/Waindigo/ShorterRoutes/Extend/XenForo/Route/Prefix/Threads.php
  164. library/EWRporta/Route/Thread.php
  165. library/vtLai/UrlKhongDau/Threads.php
  166. library/XenForo/Model/Session.php
  167. library/Zend/Exception.php
  168. library/XenForo/Model/ProfilePost.php
  169. library/WidgetFramework/XenForo/Model/ProfilePost.php
  170. library/XenForo/Route/Prefix/ProfilePosts.php
  171. library/XenForo/Model/Counters.php
  172. library/XenForo/Debug.php
  173. library/EWRporta/Listener/Template.php
  174. library/Hex/Thumbnails/Listener/TemplateHook.php
  175. library/Hex/Listener/TemplateHook.php
  176. library/Hex/Listener/TemplateHook/20150106.php
  177. library/VigLink/Listener.php
  178. library/XenForo/ViewRenderer/Json.php
  179. library/Vinavb/CustomNodeIcon/Icon.php