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.000533
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.000117
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.000148
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.000325
SELECT cache_value
FROM xf_permission_combination
WHERE permission_combination_id = ?
Params: 1
Run Time: 0.000133
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_permission_combination | const | PRIMARY | PRIMARY | 4 | const | 1 | |
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: 33371
Run Time: 0.000643
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | thread | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | user | const | PRIMARY | PRIMARY | 4 | const | 1 | |
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: 31
Run Time: 0.000621
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 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, session.view_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)LEFT OUTER JOIN xf_session_activity AS session ON post.user_id = session.user_id
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: 33371
Run Time: 0.001379
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | post | ref | thread_id_post_date,thread_id_position | thread_id_post_date | 4 | const | 1 | Using where; Using filesort |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | oilgaold_new.post.user_id | 1 | |
SIMPLE | user_profile | eq_ref | PRIMARY | PRIMARY | 4 | oilgaold_new.post.user_id | 1 | |
SIMPLE | user_privacy | eq_ref | PRIMARY | PRIMARY | 4 | oilgaold_new.post.user_id | 1 | |
SIMPLE | session_activity | ref | PRIMARY | PRIMARY | 4 | oilgaold_new.post.user_id | 11 | Using where |
SIMPLE | session | ref | PRIMARY | PRIMARY | 4 | oilgaold_new.post.user_id | 11 | |
INSERT DELAYED INTO xf_thread_view
(thread_id)
VALUES
(?)
Params: 33371
Run Time: 0.000150
SELECT xf_thread.*, xf_post.message, xf_post.attach_count, xf_node.title AS node_title
FROM xf_thread
LEFT JOIN xf_post ON (xf_post.post_id = xf_thread.first_post_id)
LEFT JOIN xf_node ON (xf_node.node_id = xf_thread.node_id)
WHERE xf_thread.node_id = 31 AND xf_thread.thread_id != 33371 AND xf_thread.post_date < 1680070041 AND xf_thread.discussion_state = 'visible'
ORDER BY xf_thread.thread_id DESC
LIMIT 2
Run Time: 0.001504
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_thread | range | PRIMARY,node_id_last_post_date,node_id_sticky_state_last_post,post_date | PRIMARY | 4 | | 8113 | Using where |
SIMPLE | xf_post | eq_ref | PRIMARY | PRIMARY | 4 | oilgaold_new.xf_thread.first_post_id | 1 | |
SIMPLE | xf_node | const | PRIMARY | PRIMARY | 4 | const | 1 | |
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 (36152)
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.000215
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | attachment | ref | content_type_id_date | content_type_id_date | 31 | const,const | 1 | Using index condition; Using where |
SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | oilgaold_new.attachment.data_id | 1 | |
SELECT xf_thread.*, xf_post.message, xf_post.attach_count, xf_node.title AS node_title
FROM xf_thread
LEFT JOIN xf_post ON (xf_post.post_id = xf_thread.first_post_id)
LEFT JOIN xf_node ON (xf_node.node_id = xf_thread.node_id)
WHERE xf_thread.node_id = 31 AND xf_thread.thread_id != 33371 AND xf_thread.post_date > 1679465241 AND xf_thread.post_date < 1680070041 AND xf_thread.discussion_state = 'visible'
ORDER BY xf_thread.view_count DESC
LIMIT 6
Run Time: 0.000691
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_thread | range | PRIMARY,node_id_last_post_date,node_id_sticky_state_last_post,post_date | post_date | 4 | | 8 | Using index condition; Using where; Using filesort |
SIMPLE | xf_post | eq_ref | PRIMARY | PRIMARY | 4 | oilgaold_new.xf_thread.first_post_id | 1 | |
SIMPLE | xf_node | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SELECT * FROM xf_post WHERE post_id = '36173'
Run Time: 0.000389
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_post | const | PRIMARY | PRIMARY | 4 | const | 1 | |
INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
Params: 45deef78a1a48d9aaed933e32aa551b8, , 1680073641
Run Time: 0.000242
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=33371, 1680070041,
Run Time: 0.000193
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.000488
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', 'bb_code_tag_code', 'bb_code_tag_php', 'bb_code_tag_html', 'bb_code_tag_quote', 'bb_code_tag_attach', 'bb_code_tag_spoiler', 'BRQCT_forum_list_nodes', 'BRQCT_ad_sidebar_top', 'BRQCT_button_top_ctrl', 'thread_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.000387
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 16 | Using where |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('BRQCT_button_top_ctrl', 'RT_UserOnlineRibbon')
AND style_id = ?
AND language_id = ?
Params: 1, 2
Run Time: 0.000148
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, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
AND title IN ('offline')
Params: 2
Run Time: 0.000153
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_phrase_compiled | const | PRIMARY | PRIMARY | 106 | const,const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('BRQCT_button_top_ctrl', 'VNXF_More_Thread')
AND style_id = ?
AND language_id = ?
Params: 1, 2
Run Time: 0.000150
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 2 | Using where |
SELECT data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('wfc_fad44cd50aebe48a543de')
Run Time: 0.000135
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.000238
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:1680070041;}}
Run Time: 0.025242
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.000513
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 | | 126 | 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.000228
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.000609
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:19033:"<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-33655" class="discussionListItem visible " data-author="dolphinlogs.com">
<div class="listBlock posterAvatar">
<span class="avatarContainer">
<a href="members/dolphinlogs-com.16796/" class="avatar Av16796s" data-avatarhtml="true"><img src="data/avatars/s/16/16796.jpg?1638265426" width="48" height="48" alt="dolphinlogs.com" /></a>
</span>
</div>
<div class="listBlock main">
<div class="titleText">
<h3 class="title">
<a href="dolphin-are-hiring-sales-engineer.t33655.html"
title=""
class="PreviewTooltip"
data-previewUrl="dolphin-are-hiring-sales-engineer.t33655.html/preview">Dolphin are Hiring: SALES ENGINEER</a>
</h3>
<div class="secondRow">
<div class="posterDate muted">
<a href="members/dolphinlogs-com.16796/" class="username" dir="auto" title="Thread starter">dolphinlogs.com</a><span class="startDate">,
<a class="faint"><abbr class="DateTime" title="" data-time="1679992039" data-diff="78002" data-datestring="28/3/23" data-timestring="15:27">28/3/23 lúc 15:27</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>68</dd></dl>
</div>
<div class="listBlock lastPost">
<dl class="lastPostInfo">
<dt><a href="members/dolphinlogs-com.16796/" class="username" dir="auto">dolphinlogs.com</a></dt>
<dd class="muted"><a class="dateTime"><abbr class="DateTime" data-time="1679992039" data-diff="78002" data-datestring="28/3/23" data-timestring="15:27">28/3/23 lúc 15:27</abbr></a></dd>
</dl>
</div>
</li>
<li id="thread-33654" class="discussionListItem visible " data-author="dolphinlogs.com">
<div class="listBlock posterAvatar">
<span class="avatarContainer">
<a href="members/dolphinlogs-com.16796/" class="avatar Av16796s" data-avatarhtml="true"><img src="data/avatars/s/16/16796.jpg?1638265426" width="48" height="48" alt="dolphinlogs.com" /></a>
</span>
</div>
<div class="listBlock main">
<div class="titleText">
<h3 class="title">
<a href="cong-ty-dolphin-can-tuyen-dung-vi-tri-project-coordinator.t33654.html"
title=""
class="PreviewTooltip"
data-previewUrl="cong-ty-dolphin-can-tuyen-dung-vi-tri-project-coordinator.t33654.html/preview">Công Ty DOLPHIN cần tuyển dụng vị trí : Project Coordinator</a>
</h3>
<div class="secondRow">
<div class="posterDate muted">
<a href="members/dolphinlogs-com.16796/" class="username" dir="auto" title="Thread starter">dolphinlogs.com</a><span class="startDate">,
<a class="faint"><abbr class="DateTime" title="" data-time="1679991838" data-diff="78203" data-datestring="28/3/23" data-timestring="15:23">28/3/23 lúc 15:23</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>89</dd></dl>
</div>
<div class="listBlock lastPost">
<dl class="lastPostInfo">
<dt><a href="members/dolphinlogs-com.16796/" class="username" dir="auto">dolphinlogs.com</a></dt>
<dd class="muted"><a class="dateTime"><abbr class="DateTime" data-time="1679991838" data-diff="78203" data-datestring="28/3/23" data-timestring="15:23">28/3/23 lúc 15:23</abbr></a></dd>
</dl>
</div>
</li>
<li id="thread-33653" class="discussionListItem visible " data-author="OLES">
<div class="listBlock posterAvatar">
<span class="avatarContainer">
<a href="members/oles.17520/" class="avatar Av17520s" data-avatarhtml="true"><img src="data/avatars/s/17/17520.jpg?1679129177" width="48" height="48" alt="OLES" /></a>
</span>
</div>
<div class="listBlock main">
<div class="titleText">
<h3 class="title">
<a href="cong-ty-oles-tuyen-dung-gap-ky-su-co-khi-ky-su-thuy-luc-pv-dat-di-lam-ngay.t33653.html"
title=""
class="PreviewTooltip"
data-previewUrl="cong-ty-oles-tuyen-dung-gap-ky-su-co-khi-ky-su-thuy-luc-pv-dat-di-lam-ngay.t33653.html/preview">Công Ty Oles tuyển dụng GẤP KỸ SƯ CƠ KHÍ, KỸ SƯ THỦY LỰC-PV đạt đi làm ngay</a>
</h3>
<div class="secondRow">
<div class="posterDate muted">
<a href="members/oles.17520/" class="username" dir="auto" title="Thread starter">OLES</a><span class="startDate">,
<a class="faint"><abbr class="DateTime" title="" data-time="1679970227" data-diff="99814" data-datestring="28/3/23" data-timestring="09:23">28/3/23 lúc 09:23</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>113</dd></dl>
</div>
<div class="listBlock lastPost">
<dl class="lastPostInfo">
<dt><a href="members/oles.17520/" class="username" dir="auto">OLES</a></dt>
<dd class="muted"><a class="dateTime"><abbr class="DateTime" data-time="1679970227" data-diff="99814" data-datestring="28/3/23" data-timestring="09:23">28/3/23 lúc 09:23</abbr></a></dd>
</dl>
</div>
</li>
<li id="thread-33652" 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-cang-dong-xuyen-thong-bao-tuyen-dung.t33652.html"
title=""
class="PreviewTooltip"
data-previewUrl="cong-ty-cp-cang-dong-xuyen-thong-bao-tuyen-dung.t33652.html/preview">Công ty CP Cảng Đông Xuyên thông báo tuyển dụng</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="1679887096" data-diff="182945" data-datestring="27/3/23" data-timestring="10:18">27/3/23 lúc 10:18</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>186</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="1679887096" data-diff="182945" data-datestring="27/3/23" data-timestring="10:18">27/3/23 lúc 10:18</abbr></a></dd>
</dl>
</div>
</li>
<li id="thread-33651" 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="pvd-training-tuyen-dung-rotating-engineer.t33651.html"
title=""
class="PreviewTooltip"
data-previewUrl="pvd-training-tuyen-dung-rotating-engineer.t33651.html/preview">PVD Training tuyển dụng Rotating Engineer</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"><abbr class="DateTime" title="" data-time="1679631108" data-diff="438933" data-datestring="24/3/23" data-timestring="11:11">24/3/23 lúc 11: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>143</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"><abbr class="DateTime" data-time="1679631108" data-diff="438933" data-datestring="24/3/23" data-timestring="11:11">24/3/23 lúc 11:11</abbr></a></dd>
</dl>
</div>
</li>
<li id="thread-33650" 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="pvd-training-tuyen-dung-nhieu-chuc-danh-offshore.t33650.html"
title=""
class="PreviewTooltip"
data-previewUrl="pvd-training-tuyen-dung-nhieu-chuc-danh-offshore.t33650.html/preview">[PVD Training] Tuyển dụng nhiều chức danh Offshore</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"><abbr class="DateTime" title="" data-time="1679630861" data-diff="439180" data-datestring="24/3/23" data-timestring="11:07">24/3/23 lúc 11:07</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>297</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"><abbr class="DateTime" data-time="1679630861" data-diff="439180" data-datestring="24/3/23" data-timestring="11:07">24/3/23 lúc 11:07</abbr></a></dd>
</dl>
</div>
</li>
<li id="thread-33649" 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="pvd-training-tuyen-dung-giam-sat-co-khi-tu-dong-hoa-thiet-bi-quay.t33649.html"
title=""
class="PreviewTooltip"
data-previewUrl="pvd-training-tuyen-dung-giam-sat-co-khi-tu-dong-hoa-thiet-bi-quay.t33649.html/preview">PVD TRAINING TUYỂN DỤNG GIÁM SÁT CƠ KHÍ/TỰ ĐỘNG HOÁ/THIẾT BỊ QUAY</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"><abbr class="DateTime" title="" data-time="1679629777" data-diff="440264" data-datestring="24/3/23" data-timestring="10:49">24/3/23 lúc 10:49</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>198</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"><abbr class="DateTime" data-time="1679629777" data-diff="440264" data-datestring="24/3/23" data-timestring="10:49">24/3/23 lúc 10:49</abbr></a></dd>
</dl>
</div>
</li>
<li id="thread-33648" 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="pvd-training-tuyen-dung-tho-bao-tri-tho-dien.t33648.html"
title=""
class="PreviewTooltip"
data-previewUrl="pvd-training-tuyen-dung-tho-bao-tri-tho-dien.t33648.html/preview">PVD Training tuyển dụng thợ bảo trì/thợ điện</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"><abbr class="DateTime" title="" data-time="1679564492" data-diff="505549" data-datestring="23/3/23" data-timestring="16:41">23/3/23 lúc 16:41</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>143</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"><abbr class="DateTime" data-time="1679564492" data-diff="505549" data-datestring="23/3/23" data-timestring="16:41">23/3/23 lúc 16:41</abbr></a></dd>
</dl>
</div>
</li>
<li id="thread-33647" class="discussionListItem visible " data-author="OLES">
<div class="listBlock posterAvatar">
<span class="avatarContainer">
<a href="members/oles.17520/" class="avatar Av17520s" data-avatarhtml="true"><img src="data/avatars/s/17/17520.jpg?1679129177" width="48" height="48" alt="OLES" /></a>
</span>
</div>
<div class="listBlock main">
<div class="titleText">
<h3 class="title">
<a href="cong-ty-oles-tuyen-dung-gap-tho-lap-van-hanh-han.t33647.html"
title=""
class="PreviewTooltip"
data-previewUrl="cong-ty-oles-tuyen-dung-gap-tho-lap-van-hanh-han.t33647.html/preview">Công ty Oles tuyển dụng gấp thợ Lắp & vận hành, hàn</a>
</h3>
<div class="secondRow">
<div class="posterDate muted">
<a href="members/oles.17520/" class="username" dir="auto" title="Thread starter">OLES</a><span class="startDate">,
<a class="faint"><span class="DateTime" title="">22/3/23</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>171</dd></dl>
</div>
<div class="listBlock lastPost">
<dl class="lastPostInfo">
<dt><a href="members/oles.17520/" class="username" dir="auto">OLES</a></dt>
<dd class="muted"><a class="dateTime"><span class="DateTime" title="22/3/23 lúc 16:21">22/3/23</span></a></dd>
</dl>
</div>
</li>
<li id="thread-33646" class="discussionListItem visible " data-author="OLES">
<div class="listBlock posterAvatar">
<span class="avatarContainer">
<a href="members/oles.17520/" class="avatar Av17520s" data-avatarhtml="true"><img src="data/avatars/s/17/17520.jpg?1679129177" width="48" height="48" alt="OLES" /></a>
</span>
</div>
<div class="listBlock main">
<div class="titleText">
<h3 class="title">
<a href="cty-oles-cpdv-thiet-bi-nang-ngoai-khoi-tuyen-dung-gap-ki-su-va-tho.t33646.html"
title=""
class="PreviewTooltip"
data-previewUrl="cty-oles-cpdv-thiet-bi-nang-ngoai-khoi-tuyen-dung-gap-ki-su-va-tho.t33646.html/preview">Cty OLES-CPDV Thiết Bị Nâng Ngoài Khơi tuyển dụng gấp Kĩ Sư và Thợ</a>
</h3>
<div class="secondRow">
<div class="posterDate muted">
<a href="members/oles.17520/" class="username" dir="auto" title="Thread starter">OLES</a><span class="startDate">,
<a class="faint"><span class="DateTime" title="">18/3/23</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>445</dd></dl>
</div>
<div class="listBlock lastPost">
<dl class="lastPostInfo">
<dt><a href="members/oles.17520/" class="username" dir="auto">OLES</a></dt>
<dd class="muted"><a class="dateTime"><span class="DateTime" title="18/3/23 lúc 10:02">18/3/23</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:1680070041;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.030601
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:1680070041;}}
Run Time: 0.022662
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.000162
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.000147
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 2 | Using where |