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.000548
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | range | PRIMARY | PRIMARY | 27 | | 26 | Using where |
SELECT data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('brListenerClasses', 'brBriviumAddOns')
Run Time: 0.000172
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | range | PRIMARY | PRIMARY | 27 | | 2 | Using where |
SELECT *
FROM xf_brivium_addon
ORDER BY addon_id
Run Time: 0.000201
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_brivium_addon | index | | PRIMARY | 77 | | 1 | |
INSERT INTO xf_data_registry
(data_key, data_value)
VALUES
(?, ?)
ON DUPLICATE KEY UPDATE
data_value = VALUES(data_value)
Params: brBriviumAddOns, a:0:{}
Run Time: 0.000255
SELECT cache_value
FROM xf_permission_combination
WHERE permission_combination_id = ?
Params: 1
Run Time: 0.000209
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_permission_combination | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SELECT node.*, forum.*
,
permission.cache_value AS node_permission_cache,
NULL AS forum_read_date,
0 AS forum_is_watched
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: 31
Run Time: 0.001120
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | forum | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | node | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | permission | const | PRIMARY | PRIMARY | 35 | const,const,const | 1 | |
SELECT COUNT(*)
FROM xf_thread AS thread
WHERE (thread.node_id = 31) AND (thread.sticky = 0) AND (thread.discussion_state IN ('visible'))
Run Time: 0.000154
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | thread | ref | node_id_last_post_date,node_id_sticky_state_last_post | node_id_sticky_state_last_post | 6 | const,const,const | 3553 | Using where; Using index |
SELECT thread.*
,
user.*, IF(user.username IS NULL, thread.username, user.username) AS username,
NULL AS thread_read_date,
0 AS thread_is_watched,
0 AS user_post_count
FROM xf_thread AS thread
LEFT JOIN xf_user AS user ON
(user.user_id = thread.user_id)
WHERE (thread.node_id = 31) AND (thread.sticky = 0) AND (thread.discussion_state IN ('visible'))
ORDER BY thread.last_post_date DESC
LIMIT 20
Run Time: 0.000734
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | thread | ref | node_id_last_post_date,node_id_sticky_state_last_post | node_id_sticky_state_last_post | 6 | const,const,const | 3553 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | oilgaold_new.thread.user_id | 1 | |
SELECT thread.*
,
user.*, IF(user.username IS NULL, thread.username, user.username) AS username,
NULL AS thread_read_date,
0 AS thread_is_watched,
0 AS user_post_count
FROM xf_thread AS thread
LEFT JOIN xf_user AS user ON
(user.user_id = thread.user_id)
WHERE (thread.node_id = 31) AND (thread.sticky = 1) AND (thread.discussion_state IN ('visible'))
ORDER BY thread.last_post_date DESC
Run Time: 0.000762
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | thread | ref | node_id_last_post_date,node_id_sticky_state_last_post | node_id_sticky_state_last_post | 6 | const,const,const | 1 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | oilgaold_new.thread.user_id | 1 | |
INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
Params: 0a4531538830a53b91fa576a931804db, , 1653300466
Run Time: 0.000336
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_Forum, Forum, valid, node_id=31, 1653296866,
Run Time: 0.000216
SELECT options.*, node.*,
permission.cache_value AS node_permission_cache
FROM nat_options AS options
INNER JOIN xf_node AS node
ON (node.node_id = options.node_id)
LEFT JOIN xf_permission_cache_content AS permission
ON (permission.permission_combination_id = ?
AND permission.content_type = 'node'
AND permission.content_id = options.node_id)
WHERE nat_display_tab = 1
ORDER BY options.nat_display_order
ASC
Params: 1
Run Time: 0.000833
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | options | ALL | node_id | | | | 47 | Using where; Using filesort |
SIMPLE | node | eq_ref | PRIMARY | PRIMARY | 4 | oilgaold_new.options.node_id | 1 | |
SIMPLE | permission | eq_ref | PRIMARY | PRIMARY | 35 | const,const,oilgaold_new.options.node_id | 1 | Using where |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('page_nav', 'BRQCT_forum_list_nodes', 'BRQCT_ad_sidebar_top', 'BRQCT_button_top_ctrl', 'forum_view', 'xenCODE_Meta_Keywords', 'wf_widget_wrapper', 'wf_widget_threads', 'wf_hook_moderator_bar', 'PAGE_CONTAINER')
AND style_id = ?
AND language_id = ?
Params: 1, 2
Run Time: 0.000499
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 10 | Using where |
SELECT data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('wfc_fad44cd50aebe48a543de')
Run Time: 0.000186
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | const | PRIMARY | PRIMARY | 27 | const | 1 | |
SELECT data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('wfc_01b0874c13a55613000c2')
Run Time: 0.000301
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | const | PRIMARY | PRIMARY | 27 | const | 1 | |
INSERT INTO xf_data_registry
(data_key, data_value)
VALUES
(?, ?)
ON DUPLICATE KEY UPDATE
data_value = VALUES(data_value)
Params: wfc_01b0874c13a55613000c2, a:1:{s:29:"hook:ad_below_content_lock_32";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1653296866;}}
Run Time: 0.020541
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.node_id IN ('14')) AND (thread.sticky = 0) AND (thread.discussion_state IN ('visible'))
ORDER BY thread.post_date DESC
LIMIT 30
Run Time: 0.000922
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | thread | index | node_id_last_post_date,node_id_sticky_state_last_post | post_date | 4 | | 133 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | oilgaold_new.thread.user_id | 1 | |
SELECT content_id, cache_value
FROM xf_permission_cache_content
WHERE permission_combination_id = ?
AND content_type = 'node'
Params: 1
Run Time: 0.000315
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_permission_cache_content | ref | PRIMARY | PRIMARY | 31 | const,const | 50 | Using where |
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 (14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14, 14)
Run Time: 0.001123
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | forum | range | PRIMARY | PRIMARY | 4 | | 1 | Using where |
SIMPLE | node | eq_ref | PRIMARY | PRIMARY | 4 | oilgaold_new.forum.node_id | 1 | |
INSERT INTO xf_data_registry
(data_key, data_value)
VALUES
(?, ?)
ON DUPLICATE KEY UPDATE
data_value = VALUES(data_value)
Params: wfc_fad44cd50aebe48a543de, a:1:{s:24:"hook:ad_below_content_32";a:3:{s:4:"html";s:18740:"<div class="discussionList">
<div class="DiscussionList">
<dl class="sectionHeaders">
<dt class="posterAvatar"><a><span> </span></a></dt>
<dd class="main">
<a class="title"><span>Tiêu đề</span></a>
<a class="postDate"><span>Ngày gửi</span></a>
</dd>
<dd class="stats">
<a class="major"><span>Trả lời</span></a>
<a class="minor"><span>Đọc</span></a>
</dd>
<dd class="lastPost"><a><span>Bài viết cuối</span></a></dd>
</dl>
<ol class="discussionListItems">
<li id="thread-33470" class="discussionListItem visible " data-author="Oil Gas Vietnam">
<div class="listBlock posterAvatar">
<span class="avatarContainer">
<a href="members/oil-gas-vietnam.3/" class="avatar Av3s" data-avatarhtml="true"><img src="data/avatars/s/0/3.jpg?1448024653" width="48" height="48" alt="Oil Gas Vietnam" /></a>
</span>
</div>
<div class="listBlock main">
<div class="titleText">
<h3 class="title">
<a href="pvsb-tuyen-dung-02-vi-tri-ky-su.t33470.html"
title=""
class="PreviewTooltip"
data-previewUrl="pvsb-tuyen-dung-02-vi-tri-ky-su.t33470.html/preview">PVSB tuyển dụng 02 vị trí Kỹ sư</a>
</h3>
<div class="secondRow">
<div class="posterDate muted">
<a href="members/oil-gas-vietnam.3/" class="username" dir="auto" title="Thread starter">Oil Gas Vietnam</a><span class="startDate">,
<a class="faint"><abbr class="DateTime" title="" data-time="1653279979" data-diff="16887" data-datestring="23/5/22" data-timestring="11:26">23/5/22 lúc 11:26</abbr></a></span>
</div>
<div class="controls faint">
</div>
</div>
</div>
</div>
<div class="listBlock stats pairsJustified" title="Members who liked the first message: 0">
<dl class="major"><dt>Trả lời:</dt> <dd>0</dd></dl>
<dl class="minor"><dt>Đọc:</dt> <dd>77</dd></dl>
</div>
<div class="listBlock lastPost">
<dl class="lastPostInfo">
<dt><a href="members/oil-gas-vietnam.3/" class="username" dir="auto">Oil Gas Vietnam</a></dt>
<dd class="muted"><a class="dateTime"><abbr class="DateTime" data-time="1653279979" data-diff="16887" data-datestring="23/5/22" data-timestring="11:26">23/5/22 lúc 11:26</abbr></a></dd>
</dl>
</div>
</li>
<li id="thread-33469" class="discussionListItem visible " data-author="Oil Gas Vietnam">
<div class="listBlock posterAvatar">
<span class="avatarContainer">
<a href="members/oil-gas-vietnam.3/" class="avatar Av3s" data-avatarhtml="true"><img src="data/avatars/s/0/3.jpg?1448024653" width="48" height="48" alt="Oil Gas Vietnam" /></a>
</span>
</div>
<div class="listBlock main">
<div class="titleText">
<h3 class="title">
<a href="cong-ty-cp-hang-hai-dau-khi-hai-duong-tuyen-dung-vi-tri-le-tan.t33469.html"
title=""
class="PreviewTooltip"
data-previewUrl="cong-ty-cp-hang-hai-dau-khi-hai-duong-tuyen-dung-vi-tri-le-tan.t33469.html/preview">Công ty CP Hàng Hải Dầu Khí Hải Dương tuyển dụng vị trí Lễ tân</a>
</h3>
<div class="secondRow">
<div class="posterDate muted">
<a href="members/oil-gas-vietnam.3/" class="username" dir="auto" title="Thread starter">Oil Gas Vietnam</a><span class="startDate">,
<a class="faint"><abbr class="DateTime" title="" data-time="1653030687" data-diff="266179" data-datestring="20/5/22" data-timestring="14:11">20/5/22 lúc 14:11</abbr></a></span>
</div>
<div class="controls faint">
</div>
</div>
</div>
</div>
<div class="listBlock stats pairsJustified" title="Members who liked the first message: 0">
<dl class="major"><dt>Trả lời:</dt> <dd>0</dd></dl>
<dl class="minor"><dt>Đọc:</dt> <dd>383</dd></dl>
</div>
<div class="listBlock lastPost">
<dl class="lastPostInfo">
<dt><a href="members/oil-gas-vietnam.3/" class="username" dir="auto">Oil Gas Vietnam</a></dt>
<dd class="muted"><a class="dateTime"><abbr class="DateTime" data-time="1653030687" data-diff="266179" data-datestring="20/5/22" data-timestring="14:11">20/5/22 lúc 14:11</abbr></a></dd>
</dl>
</div>
</li>
<li id="thread-33468" class="discussionListItem visible " data-author="PTSC POS">
<div class="listBlock posterAvatar">
<span class="avatarContainer">
<a href="members/ptsc-pos.10594/" class="avatar Av10594s" data-avatarhtml="true"><img src="data/avatars/s/10/10594.jpg?1637744607" width="48" height="48" alt="PTSC POS" /></a>
</span>
</div>
<div class="listBlock main">
<div class="titleText">
<h3 class="title">
<a href="cong-ty-ptsc-pos-tuyen-dung-mot-so-vi-tri.t33468.html"
title=""
class="PreviewTooltip"
data-previewUrl="cong-ty-ptsc-pos-tuyen-dung-mot-so-vi-tri.t33468.html/preview">Công ty PTSC POS tuyển dụng một số vị trí</a>
</h3>
<div class="secondRow">
<div class="posterDate muted">
<a href="members/ptsc-pos.10594/" class="username" dir="auto" title="Thread starter">PTSC POS</a><span class="startDate">,
<a class="faint"><abbr class="DateTime" title="" data-time="1652867545" data-diff="429321" data-datestring="18/5/22" data-timestring="16:52">18/5/22 lúc 16:52</abbr></a></span>
</div>
<div class="controls faint">
</div>
</div>
</div>
</div>
<div class="listBlock stats pairsJustified" title="Members who liked the first message: 0">
<dl class="major"><dt>Trả lời:</dt> <dd>0</dd></dl>
<dl class="minor"><dt>Đọc:</dt> <dd>726</dd></dl>
</div>
<div class="listBlock lastPost">
<dl class="lastPostInfo">
<dt><a href="members/ptsc-pos.10594/" class="username" dir="auto">PTSC POS</a></dt>
<dd class="muted"><a class="dateTime"><abbr class="DateTime" data-time="1652867545" data-diff="429321" data-datestring="18/5/22" data-timestring="16:52">18/5/22 lúc 16:52</abbr></a></dd>
</dl>
</div>
</li>
<li id="thread-33467" class="discussionListItem visible " data-author="XL_Manpower">
<div class="listBlock posterAvatar">
<span class="avatarContainer">
<a href="members/xl-manpower.9497/" class="avatar Av9497s" data-avatarhtml="true"><img src="data/avatars/s/9/9497.jpg?1528707787" width="48" height="48" alt="XL_Manpower" /></a>
</span>
</div>
<div class="listBlock main">
<div class="titleText">
<h3 class="title">
<a href="cong-ty-xl-manpower-tuyen-dung-viec-lam-co-khi-tai-long-son-brvt.t33467.html"
title=""
class="PreviewTooltip"
data-previewUrl="cong-ty-xl-manpower-tuyen-dung-viec-lam-co-khi-tai-long-son-brvt.t33467.html/preview">Công ty XL Manpower tuyển dụng Việc làm cơ khí tại Long Sơn, BRVT</a>
</h3>
<div class="secondRow">
<div class="posterDate muted">
<a href="members/xl-manpower.9497/" class="username" dir="auto" title="Thread starter">XL_Manpower</a><span class="startDate">,
<a class="faint"><abbr class="DateTime" title="" data-time="1652866493" data-diff="430373" data-datestring="18/5/22" data-timestring="16:34">18/5/22 lúc 16:34</abbr></a></span>
</div>
<div class="controls faint">
</div>
</div>
</div>
</div>
<div class="listBlock stats pairsJustified" title="Members who liked the first message: 0">
<dl class="major"><dt>Trả lời:</dt> <dd>0</dd></dl>
<dl class="minor"><dt>Đọc:</dt> <dd>281</dd></dl>
</div>
<div class="listBlock lastPost">
<dl class="lastPostInfo">
<dt><a href="members/xl-manpower.9497/" class="username" dir="auto">XL_Manpower</a></dt>
<dd class="muted"><a class="dateTime"><abbr class="DateTime" data-time="1652866493" data-diff="430373" data-datestring="18/5/22" data-timestring="16:34">18/5/22 lúc 16:34</abbr></a></dd>
</dl>
</div>
</li>
<li id="thread-33466" class="discussionListItem visible " data-author="PVC-MS">
<div class="listBlock posterAvatar">
<span class="avatarContainer">
<a href="members/pvc-ms.11407/" class="avatar Av11407s" data-avatarhtml="true"><img src="data/avatars/s/11/11407.jpg?1560906581" width="48" height="48" alt="PVC-MS" /></a>
</span>
</div>
<div class="listBlock main">
<div class="titleText">
<h3 class="title">
<a href="pvc-ms-thong-bao-tuyen-dung-ky-su-giam-sat-kich-thuoc-dimension-surveyor.t33466.html"
title=""
class="PreviewTooltip"
data-previewUrl="pvc-ms-thong-bao-tuyen-dung-ky-su-giam-sat-kich-thuoc-dimension-surveyor.t33466.html/preview">PVC-MS thông báo tuyển dụng Kỹ sư giám sát kích thước (Dimension Surveyor)</a>
</h3>
<div class="secondRow">
<div class="posterDate muted">
<a href="members/pvc-ms.11407/" class="username" dir="auto" title="Thread starter">PVC-MS</a><span class="startDate">,
<a class="faint"><abbr class="DateTime" title="" data-time="1652844891" data-diff="451975" data-datestring="18/5/22" data-timestring="10:34">18/5/22 lúc 10:34</abbr></a></span>
</div>
<div class="controls faint">
</div>
</div>
</div>
</div>
<div class="listBlock stats pairsJustified" title="Members who liked the first message: 0">
<dl class="major"><dt>Trả lời:</dt> <dd>0</dd></dl>
<dl class="minor"><dt>Đọc:</dt> <dd>236</dd></dl>
</div>
<div class="listBlock lastPost">
<dl class="lastPostInfo">
<dt><a href="members/pvc-ms.11407/" class="username" dir="auto">PVC-MS</a></dt>
<dd class="muted"><a class="dateTime"><abbr class="DateTime" data-time="1652844891" data-diff="451975" data-datestring="18/5/22" data-timestring="10:34">18/5/22 lúc 10:34</abbr></a></dd>
</dl>
</div>
</li>
<li id="thread-33465" class="discussionListItem visible " data-author="PTSC POS">
<div class="listBlock posterAvatar">
<span class="avatarContainer">
<a href="members/ptsc-pos.10594/" class="avatar Av10594s" data-avatarhtml="true"><img src="data/avatars/s/10/10594.jpg?1637744607" width="48" height="48" alt="PTSC POS" /></a>
</span>
</div>
<div class="listBlock main">
<div class="titleText">
<h3 class="title">
<a href="ptsc-pos-tuyen-dung-lab-tech-lam-viec-tren-gian-rong-doi.t33465.html"
title=""
class="PreviewTooltip"
data-previewUrl="ptsc-pos-tuyen-dung-lab-tech-lam-viec-tren-gian-rong-doi.t33465.html/preview">PTSC POS Tuyển dụng Lab Tech làm việc trên giàn Rồng Đôi</a>
</h3>
<div class="secondRow">
<div class="posterDate muted">
<a href="members/ptsc-pos.10594/" class="username" dir="auto" title="Thread starter">PTSC POS</a><span class="startDate">,
<a class="faint"><abbr class="DateTime" title="" data-time="1652839600" data-diff="457266" data-datestring="18/5/22" data-timestring="09:06">18/5/22 lúc 09:06</abbr></a></span>
</div>
<div class="controls faint">
</div>
</div>
</div>
</div>
<div class="listBlock stats pairsJustified" title="Members who liked the first message: 0">
<dl class="major"><dt>Trả lời:</dt> <dd>0</dd></dl>
<dl class="minor"><dt>Đọc:</dt> <dd>279</dd></dl>
</div>
<div class="listBlock lastPost">
<dl class="lastPostInfo">
<dt><a href="members/ptsc-pos.10594/" class="username" dir="auto">PTSC POS</a></dt>
<dd class="muted"><a class="dateTime"><abbr class="DateTime" data-time="1652839600" data-diff="457266" data-datestring="18/5/22" data-timestring="09:06">18/5/22 lúc 09:06</abbr></a></dd>
</dl>
</div>
</li>
<li id="thread-33464" class="discussionListItem visible " data-author="PVDTraining">
<div class="listBlock posterAvatar">
<span class="avatarContainer">
<a href="members/pvdtraining.11961/" class="avatar Av11961s" data-avatarhtml="true"><img src="data/avatars/s/11/11961.jpg?1569287743" width="48" height="48" alt="PVDTraining" /></a>
</span>
</div>
<div class="listBlock main">
<div class="titleText">
<h3 class="title">
<a href="urgent-recruitment-for-drilling-campaign.t33464.html"
title=""
class="PreviewTooltip"
data-previewUrl="urgent-recruitment-for-drilling-campaign.t33464.html/preview">Urgent!!! - Recruitment for Drilling Campaign</a>
</h3>
<div class="secondRow">
<div class="posterDate muted">
<a href="members/pvdtraining.11961/" class="username" dir="auto" title="Thread starter">PVDTraining</a><span class="startDate">,
<a class="faint"><span class="DateTime" title="">13/5/22</span></a></span>
</div>
<div class="controls faint">
</div>
</div>
</div>
</div>
<div class="listBlock stats pairsJustified" title="Members who liked the first message: 0">
<dl class="major"><dt>Trả lời:</dt> <dd>0</dd></dl>
<dl class="minor"><dt>Đọc:</dt> <dd>568</dd></dl>
</div>
<div class="listBlock lastPost">
<dl class="lastPostInfo">
<dt><a href="members/pvdtraining.11961/" class="username" dir="auto">PVDTraining</a></dt>
<dd class="muted"><a class="dateTime"><span class="DateTime" title="13/5/22 lúc 17:02">13/5/22</span></a></dd>
</dl>
</div>
</li>
<li id="thread-33463" class="discussionListItem visible " data-author="Oil Gas Vietnam">
<div class="listBlock posterAvatar">
<span class="avatarContainer">
<a href="members/oil-gas-vietnam.3/" class="avatar Av3s" data-avatarhtml="true"><img src="data/avatars/s/0/3.jpg?1448024653" width="48" height="48" alt="Oil Gas Vietnam" /></a>
</span>
</div>
<div class="listBlock main">
<div class="titleText">
<h3 class="title">
<a href="pv-shipyard-tuyen-dung-mot-so-vi-tri.t33463.html"
title=""
class="PreviewTooltip"
data-previewUrl="pv-shipyard-tuyen-dung-mot-so-vi-tri.t33463.html/preview">PV Shipyard tuyển dụng một số vị trí</a>
</h3>
<div class="secondRow">
<div class="posterDate muted">
<a href="members/oil-gas-vietnam.3/" class="username" dir="auto" title="Thread starter">Oil Gas Vietnam</a><span class="startDate">,
<a class="faint"><span class="DateTime" title="">13/5/22</span></a></span>
</div>
<div class="controls faint">
</div>
</div>
</div>
</div>
<div class="listBlock stats pairsJustified" title="Members who liked the first message: 0">
<dl class="major"><dt>Trả lời:</dt> <dd>0</dd></dl>
<dl class="minor"><dt>Đọc:</dt> <dd>680</dd></dl>
</div>
<div class="listBlock lastPost">
<dl class="lastPostInfo">
<dt><a href="members/oil-gas-vietnam.3/" class="username" dir="auto">Oil Gas Vietnam</a></dt>
<dd class="muted"><a class="dateTime"><span class="DateTime" title="13/5/22 lúc 14:30">13/5/22</span></a></dd>
</dl>
</div>
</li>
<li id="thread-33462" class="discussionListItem visible " data-author="XL_Manpower">
<div class="listBlock posterAvatar">
<span class="avatarContainer">
<a href="members/xl-manpower.9497/" class="avatar Av9497s" data-avatarhtml="true"><img src="data/avatars/s/9/9497.jpg?1528707787" width="48" height="48" alt="XL_Manpower" /></a>
</span>
</div>
<div class="listBlock main">
<div class="titleText">
<h3 class="title">
<a href="cong-ty-xl-manpower-tuyen-dung-ki-su-phan-mem-software-engineer-cho-tap-doan-nuoc-ngoai.t33462.html"
title=""
class="PreviewTooltip"
data-previewUrl="cong-ty-xl-manpower-tuyen-dung-ki-su-phan-mem-software-engineer-cho-tap-doan-nuoc-ngoai.t33462.html/preview">Công ty XL Manpower tuyển dụng Kĩ sư phần mềm (Software Engineer) cho tập đoàn nước ngoài</a>
</h3>
<div class="secondRow">
<div class="posterDate muted">
<a href="members/xl-manpower.9497/" class="username" dir="auto" title="Thread starter">XL_Manpower</a><span class="startDate">,
<a class="faint"><span class="DateTime" title="">12/5/22</span></a></span>
</div>
<div class="controls faint">
</div>
</div>
</div>
</div>
<div class="listBlock stats pairsJustified" title="Members who liked the first message: 0">
<dl class="major"><dt>Trả lời:</dt> <dd>0</dd></dl>
<dl class="minor"><dt>Đọc:</dt> <dd>384</dd></dl>
</div>
<div class="listBlock lastPost">
<dl class="lastPostInfo">
<dt><a href="members/xl-manpower.9497/" class="username" dir="auto">XL_Manpower</a></dt>
<dd class="muted"><a class="dateTime"><span class="DateTime" title="12/5/22 lúc 10:56">12/5/22</span></a></dd>
</dl>
</div>
</li>
<li id="thread-33461" class="discussionListItem visible " data-author="XL_Manpower">
<div class="listBlock posterAvatar">
<span class="avatarContainer">
<a href="members/xl-manpower.9497/" class="avatar Av9497s" data-avatarhtml="true"><img src="data/avatars/s/9/9497.jpg?1528707787" width="48" height="48" alt="XL_Manpower" /></a>
</span>
</div>
<div class="listBlock main">
<div class="titleText">
<h3 class="title">
<a href="tuyen-dung-test-engineer-va-test-assistant-tai-tphcm.t33461.html"
title=""
class="PreviewTooltip"
data-previewUrl="tuyen-dung-test-engineer-va-test-assistant-tai-tphcm.t33461.html/preview">Tuyển dụng Test Engineer và Test Assistant tại TpHcm</a>
</h3>
<div class="secondRow">
<div class="posterDate muted">
<a href="members/xl-manpower.9497/" class="username" dir="auto" title="Thread starter">XL_Manpower</a><span class="startDate">,
<a class="faint"><span class="DateTime" title="">10/5/22</span></a></span>
</div>
<div class="controls faint">
</div>
</div>
</div>
</div>
<div class="listBlock stats pairsJustified" title="Members who liked the first message: 0">
<dl class="major"><dt>Trả lời:</dt> <dd>0</dd></dl>
<dl class="minor"><dt>Đọc:</dt> <dd>452</dd></dl>
</div>
<div class="listBlock lastPost">
<dl class="lastPostInfo">
<dt><a href="members/xl-manpower.9497/" class="username" dir="auto">XL_Manpower</a></dt>
<dd class="muted"><a class="dateTime"><span class="DateTime" title="10/5/22 lúc 13:54">10/5/22</span></a></dd>
</dl>
</div>
</li>
</ol>
</div>
</div>
<div id="PreviewTooltip">
<span class="arrow"><span></span></span>
<div class="section">
<div class="primaryContent previewContent">
<span class="PreviewContents">Đang tải...</span>
</div>
</div>
</div>";s:4:"time";i:1653296866;s:9:"extraData";a:1:{s:17:"requiredExternals";a:1:{s:3:"css";a:10:{i:0;s:15:"discussion_list";i:1;s:15:"discussion_list";i:2;s:15:"discussion_list";i:3;s:15:"discussion_list";i:4;s:15:"discussion_list";i:5;s:15:"discussion_list";i:6;s:15:"discussion_list";i:7;s:15:"discussion_list";i:8;s:15:"discussion_list";i:9;s:15:"discussion_list";}}}}}
Run Time: 0.023675
INSERT INTO xf_data_registry
(data_key, data_value)
VALUES
(?, ?)
ON DUPLICATE KEY UPDATE
data_value = VALUES(data_value)
Params: wfc_01b0874c13a55613000c2, a:1:{s:29:"hook:ad_below_content_lock_32";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1653296866;}}
Run Time: 0.017871
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('BRQCT_button_top_ctrl', 'BRQCT_navigation_tabs_forums')
AND style_id = ?
AND language_id = ?
Params: 1, 2
Run Time: 0.000170
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 2 | Using where |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('BRQCT_button_top_ctrl', 'nat_bodyjs')
AND style_id = ?
AND language_id = ?
Params: 1, 2
Run Time: 0.000151
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 2 | Using where |