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.002362
| 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.001600
| 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.004084
| 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.001031
SELECT cache_value
FROM xf_permission_combination
WHERE permission_combination_id = ?
Params: 1
Run Time: 0.000278
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_permission_combination | const | PRIMARY | PRIMARY | 4 | const | 1 | |
INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
Params: db641770d32343eac7abcdd453754725, a:6:{s:12:"sessionStart";i:1762779879;s:2:"ip";s:4:"aS";s:11:"sessionCsrf";s:16:"uwDnQkiqy2nEGnnv";s:9:"userAgent";s:40:"CCBot/2.0 (https://commoncrawl.org/faq/)";s:7:"robotId";s:0:"";s:16:"previousActivity";i:0;}, 1762783479
Run Time: 0.000279
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, aS, aS, EWRporta_ControllerPublic_Portal, Index, valid, , 1762779879,
Run Time: 0.000163
SELECT *
FROM EWRporta_layouts
WHERE layout_id = ?
Params: portal
Run Time: 0.000270
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_layouts | const | PRIMARY | PRIMARY | 77 | const | 1 | |
SELECT *, 'disabled' AS position
FROM EWRporta_blocks
WHERE active = 1
ORDER BY block_id ASC
Run Time: 0.000499
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_blocks | index | | PRIMARY | 77 | | 16 | Using where |
SELECT * FROM EWRporta_caches
Run Time: 0.000504
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_caches | ALL | | | | | 6 | |
SELECT * FROM EWRporta_options
Run Time: 0.000831
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_options | ALL | | | | | 73 | |
SELECT xf_thread.*, xf_user.*, xf_post.message, xf_post.attach_count, xf_node.title AS node_title,
IF(xf_user.username IS NULL, xf_thread.username, xf_user.username) AS username,
IF(EWRporta_promotes.promote_date IS NULL, xf_thread.post_date, EWRporta_promotes.promote_date) AS promote_date,
EWRporta_promotes.promote_icon, EWRporta_promotes.promote_data
FROM xf_thread
LEFT JOIN xf_user ON (xf_user.user_id = xf_thread.user_id)
INNER JOIN xf_post ON (xf_post.post_id = xf_thread.first_post_id)
INNER JOIN xf_node ON (xf_node.node_id = xf_thread.node_id)
LEFT JOIN EWRporta_promotes ON (EWRporta_promotes.thread_id = xf_thread.thread_id)
WHERE ( xf_thread.node_id IN ('1', '2', '3', '4', '50', '5', '6', '7', '8', '51', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27') OR EWRporta_promotes.promote_date < ? )
AND xf_thread.discussion_state = 'visible'
AND IF(EWRporta_promotes.promote_date IS NULL, xf_thread.post_date, EWRporta_promotes.promote_date) < ?
ORDER BY promote_date DESC
LIMIT ?, ?Params: 1762779879, 1762779879, 0, 5
Run Time: 0.047763
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_thread | ALL | node_id_last_post_date,node_id_sticky_state_last_post | | | | 889 | Using where; Using temporary; Using filesort |
| SIMPLE | EWRporta_promotes | ALL | PRIMARY | | | | 1 | Using where; Using join buffer (Block Nested Loop) |
| SIMPLE | xf_node | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.xf_thread.node_id | 1 | |
| SIMPLE | xf_post | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.xf_thread.first_post_id | 1 | |
| SIMPLE | xf_user | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.xf_thread.user_id | 1 | |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3143
Run Time: 0.000343
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3142
Run Time: 0.000287
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3140
Run Time: 0.000287
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
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 (3528)
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.000610
| 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 |
| SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.attachment.data_id | 1 | |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3139
Run Time: 0.002026
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3138
Run Time: 0.001968
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT COUNT(*) AS total
FROM xf_thread
LEFT JOIN EWRporta_promotes ON (EWRporta_promotes.thread_id = xf_thread.thread_id)
WHERE (xf_thread.node_id IN ('1', '2', '3', '4', '50', '5', '6', '7', '8', '51', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27') OR EWRporta_promotes.promote_date < ?)
AND xf_thread.discussion_state = 'visible'
AND IF(EWRporta_promotes.promote_date IS NULL, xf_thread.post_date, EWRporta_promotes.promote_date) < ?Params: 1762779879, 1762779879
Run Time: 0.002026
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_thread | ALL | node_id_last_post_date,node_id_sticky_state_last_post | | | | 889 | Using where |
| SIMPLE | EWRporta_promotes | ALL | PRIMARY | | | | 1 | Using where; Using join buffer (Block Nested Loop) |
SELECT *
FROM EWRporta_caches
WHERE block_id = ?
Params: RecentNews
Run Time: 0.000368
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_caches | const | PRIMARY | PRIMARY | 77 | const | 1 | |
SELECT *
FROM EWRporta_caches
WHERE block_id = ?
Params: RecentNews
Run Time: 0.000247
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_caches | const | PRIMARY | PRIMARY | 77 | const | 1 | |
begin
Run Time: 0.000238
UPDATE `EWRporta_caches` SET `date` = ? WHERE (block_id = 'RecentNews')
Params: 1762779879
Run Time: 0.000244
commit
Run Time: 0.001627
SELECT thread.*
,
user.*, IF(user.username IS NULL, thread.username, user.username) AS username,
node.title AS node_title, node.node_name,
NULL AS thread_read_date,
0 AS thread_is_watched,
0 AS user_post_count,
permission.cache_value AS node_permission_cache
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)
LEFT JOIN xf_permission_cache_content AS permission
ON (permission.permission_combination_id = 1
AND permission.content_type = 'node'
AND permission.content_id = thread.node_id)
WHERE (thread.discussion_state IN ('visible')) AND (thread.last_post_date > 1762693479)
ORDER BY thread.last_post_date DESC
LIMIT 3Run Time: 0.001350
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | thread | range | last_post_date | last_post_date | 4 | | 1 | Using index condition; Using where |
| SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.thread.user_id | 1 | |
| SIMPLE | node | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.thread.node_id | 1 | |
| SIMPLE | permission | eq_ref | PRIMARY | PRIMARY | 35 | const,const,vungtauc_br.thread.node_id | 1 | Using where |
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 > 1762778979)
ORDER BY session_activity.view_date DESC
Run Time: 0.001033
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | session_activity | range | view_date | view_date | 4 | | 33 | Using where |
| SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.session_activity.user_id | 1 | |
SELECT xf_thread.*, xf_user.*, xf_post.message, xf_post.attach_count, xf_node.title AS node_title,
IF(xf_user.username IS NULL, xf_thread.username, xf_user.username) AS username,
IF(EWRporta_promotes.promote_date IS NULL, xf_thread.post_date, EWRporta_promotes.promote_date) AS promote_date,
EWRporta_promotes.promote_icon, EWRporta_promotes.promote_data
FROM xf_thread
LEFT JOIN xf_user ON (xf_user.user_id = xf_thread.user_id)
INNER JOIN xf_post ON (xf_post.post_id = xf_thread.first_post_id)
INNER JOIN xf_node ON (xf_node.node_id = xf_thread.node_id)
LEFT JOIN EWRporta_promotes ON (EWRporta_promotes.thread_id = xf_thread.thread_id)
WHERE ( xf_thread.node_id IN ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29') OR EWRporta_promotes.promote_date < ? )
AND xf_thread.discussion_state = 'visible'
AND IF(EWRporta_promotes.promote_date IS NULL, xf_thread.post_date, EWRporta_promotes.promote_date) < ?
ORDER BY sticky DESC, promote_date DESC
LIMIT ?, ?Params: 1762779879, 1762779879, 0, 20
Run Time: 0.040685
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_thread | ALL | node_id_last_post_date,node_id_sticky_state_last_post | | | | 889 | Using where; Using temporary; Using filesort |
| SIMPLE | EWRporta_promotes | ALL | PRIMARY | | | | 1 | Using where; Using join buffer (Block Nested Loop) |
| SIMPLE | xf_node | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.xf_thread.node_id | 1 | |
| SIMPLE | xf_post | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.xf_thread.first_post_id | 1 | |
| SIMPLE | xf_user | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.xf_thread.user_id | 1 | |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3137
Run Time: 0.000329
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3131
Run Time: 0.000282
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
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 (3519)
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.000490
| 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 |
| SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.attachment.data_id | 1 | |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3129
Run Time: 0.000282
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3121
Run Time: 0.000285
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
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 (3509)
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.000459
| 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 |
| SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.attachment.data_id | 1 | |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3120
Run Time: 0.000273
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
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 (3508)
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.000419
| 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 |
| SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.attachment.data_id | 1 | |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3119
Run Time: 0.000279
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
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 (3507)
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.000429
| 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 |
| SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.attachment.data_id | 1 | |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3118
Run Time: 0.000276
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
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 (3506)
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.000455
| 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 |
| SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.attachment.data_id | 1 | |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3116
Run Time: 0.000286
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
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 (3504)
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.000430
| 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 |
| SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.attachment.data_id | 1 | |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3115
Run Time: 0.000277
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
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 (3503)
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.000423
| 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 |
| SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | vungtauc_br.attachment.data_id | 1 | |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3107
Run Time: 0.000273
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3106
Run Time: 0.000277
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3092
Run Time: 0.000290
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3091
Run Time: 0.000294
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3090
Run Time: 0.000267
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3089
Run Time: 0.000274
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3048
Run Time: 0.000269
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3027
Run Time: 0.000274
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3026
Run Time: 0.000298
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3023
Run Time: 0.000296
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT *
FROM EWRporta_categories
INNER JOIN EWRporta_catlinks ON (EWRporta_catlinks.category_id = EWRporta_categories.category_id)
WHERE thread_id = ?
ORDER BY EWRporta_categories.category_type ASC, EWRporta_categories.category_name ASC
Params: 3019
Run Time: 0.000295
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_categories | ALL | PRIMARY | | | | 1 | Using filesort |
| SIMPLE | EWRporta_catlinks | eq_ref | category_id | category_id | 8 | vungtauc_br.EWRporta_categories.category_id,const | 1 | Using index |
SELECT COUNT(*) AS total
FROM xf_thread
LEFT JOIN EWRporta_promotes ON (EWRporta_promotes.thread_id = xf_thread.thread_id)
WHERE (xf_thread.node_id IN ('1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29') OR EWRporta_promotes.promote_date < ?)
AND xf_thread.discussion_state = 'visible'
AND IF(EWRporta_promotes.promote_date IS NULL, xf_thread.post_date, EWRporta_promotes.promote_date) < ?Params: 1762779879, 1762779879
Run Time: 0.001978
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | xf_thread | ALL | node_id_last_post_date,node_id_sticky_state_last_post | | | | 889 | Using where |
| SIMPLE | EWRporta_promotes | ALL | PRIMARY | | | | 1 | Using where; Using join buffer (Block Nested Loop) |
SELECT *
FROM EWRporta_caches
WHERE block_id = ?
Params: RecentNews2
Run Time: 0.000383
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_caches | const | PRIMARY | PRIMARY | 77 | const | 1 | |
SELECT *
FROM EWRporta_caches
WHERE block_id = ?
Params: RecentNews2
Run Time: 0.000296
| Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
|---|
| SIMPLE | EWRporta_caches | const | PRIMARY | PRIMARY | 77 | const | 1 | |
begin
Run Time: 0.000257
UPDATE `EWRporta_caches` SET `results` = ?, `date` = ? WHERE (block_id = 'RecentNews2')
Params: a:2:{s:6:"option";a:9:{s:5:"forum";a:29:{i:0;s:1:"1";i:1;s:1:"2";i:2;s:1:"3";i:3;s:1:"4";i:4;s:1:"5";i:5;s:1:"6";i:6;s:1:"7";i:7;s:1:"8";i:8;s:1:"9";i:9;s:2:"10";i:10;s:2:"11";i:11;s:2:"12";i:12;s:2:"13";i:13;s:2:"14";i:14;s:2:"15";i:15;s:2:"16";i:16;s:2:"17";i:17;s:2:"18";i:18;s:2:"19";i:19;s:2:"20";i:20;s:2:"21";i:21;s:2:"22";i:22;s:2:"23";i:23;s:2:"24";i:24;s:2:"25";i:25;s:2:"26";i:26;s:2:"27";i:27;s:2:"28";i:28;s:2:"29";}s:8:"leftdate";s:1:"1";s:5:"limit";s:2:"20";s:7:"pagenav";s:1:"1";s:6:"social";s:1:"0";s:6:"sticky";s:1:"1";s:8:"truncate";s:3:"200";s:7:"parseBB";b:1;s:5:"count";i:892;}s:11:"RecentNews2";a:20:{i:0;a:59:{s:9:"thread_id";i:3137;s:7:"node_id";i:3;s:5:"title";s:74:"Công ty TNHH Trần Vinh Nhân viên Kinh doanh & Chăm sóc khách hàng";s:11:"reply_count";i:0;s:10:"view_count";i:902;s:7:"user_id";i:920;s:8:"username";s:6:"Editor";s:9:"post_date";i:1736040809;s:6:"sticky";i:1;s:16:"discussion_state";s:7:"visible";s:15:"discussion_open";i:1;s:15:"discussion_type";s:0:"";s:13:"first_post_id";i:3525;s:16:"first_post_likes";i:0;s:14:"last_post_date";i:1736040809;s:12:"last_post_id";i:3525;s:17:"last_post_user_id";i:920;s:18:"last_post_username";s:6:"Editor";s:9:"prefix_id";i:1;s:4:"tags";s:6:"a:0:{}";s:5:"email";s:18:"trungosc@gmail.com";s:6:"gender";s:4:"male";s:12:"custom_title";s:5:"Admin";s:11:"language_id";i:2;s:8:"style_id";i:0;s:8:"timezone";s:12:"Asia/Bangkok";s:7:"visible";i:1;s:16:"activity_visible";i:1;s:13:"user_group_id";i:3;s:19:"secondary_group_ids";s:1:"4";s:22:"display_style_group_id";i:3;s:25:"permission_combination_id";i:18;s:13:"message_count";i:371;s:20:"conversations_unread";i:0;s:13:"register_date";i:1493824172;s:13:"last_activity";i:1753433992;s:13:"trophy_points";i:18;s:13:"alerts_unread";i:0;s:11:"avatar_date";i:1494464686;s:12:"avatar_width";i:192;s:13:"avatar_height";i:192;s:8:"gravatar";s:0:"";s:10:"user_state";s:5:"valid";s:12:"is_moderator";i:0;s:8:"is_admin";i:1;s:9:"is_banned";i:0;s:10:"like_count";i:12;s:14:"warning_points";i:0;s:8:"is_staff";i:1;s:7:"message";s:239:"Công ty TNHH Trần Vinh cần tuyển:
[LIST]
[*][B]Vị trí tuyển dụng: [/B]Nhân viên Kinh doanh & Chăm sóc khách hàng
[*][B]Số lượng:[/B] 04 người
[*][B]Yêu cầu công việc:[/B]
[LIST]
[*]Tốt nghiệp Đại...";s:12:"attach_count";i:0;s:10:"node_title";s:10:"Bán hàng";s:12:"promote_date";i:1736040809;s:12:"promote_icon";N;s:12:"promote_data";s:74:"https://tranvinhvanphongpham.com/wp-content/uploads/2021/01/Untitled-1.png";s:10:"categories";a:0:{}s:3:"day";s:2:"05";s:5:"month";O:14:"XenForo_Phrase":4:{s:14:"