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.009518
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.003402
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | range | PRIMARY | PRIMARY | 27 | | 2 | Using where |
SELECT cache_value
FROM xf_permission_combination
WHERE permission_combination_id = ?
Params: 1
Run Time: 0.009358
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_permission_combination | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SELECT user.*
,
user_profile.*,
user_option.*,
user_privacy.*,
0 AS following_0
FROM xf_user AS user
LEFT JOIN xf_user_profile AS user_profile ON
(user_profile.user_id = user.user_id)
LEFT JOIN xf_user_option AS user_option ON
(user_option.user_id = user.user_id)
LEFT JOIN xf_user_privacy AS user_privacy ON
(user_privacy.user_id = user.user_id)
WHERE user.user_id = ?
Params: 14564
Run Time: 0.012655
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | user | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | user_profile | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | user_option | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | user_privacy | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SELECT
user.*,
user_profile.*,
user_privacy.*,
news_feed.*
FROM xf_news_feed AS news_feed
INNER JOIN xf_user AS user ON
(user.user_id = news_feed.user_id)
INNER JOIN xf_user_profile AS user_profile ON
(user_profile.user_id = user.user_id)
LEFT JOIN xf_user_follow AS user_follow ON
(user_follow.user_id = user.user_id
AND user_follow.follow_user_id = 0)
INNER JOIN xf_user_privacy AS user_privacy ON
(user_privacy.user_id = user.user_id
AND (user.user_id = 0
OR (
user_privacy.allow_receive_news_feed <> 'none'
AND IF(user_privacy.allow_receive_news_feed = 'members', 0, 1)
AND IF(user_privacy.allow_receive_news_feed = 'followed', user_follow.user_id IS NOT NULL, 1)
)
)
)
WHERE (news_feed.user_id = 14564)
ORDER BY news_feed.event_date DESC
LIMIT 15
Run Time: 0.019484
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | user | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | user_profile | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | user_follow | const | PRIMARY,follow_user_id | PRIMARY | 8 | const,const | 0 | Unique row not found |
SIMPLE | user_privacy | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | news_feed | ref | userId_eventDate | userId_eventDate | 4 | const | 1 | Using where |
INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
Params: 88f520c6155a42691c9b516ebbe34434, , 1752056020
Run Time: 0.004397
INSERT INTO xf_session_activity
(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date, robot_key)
VALUES
(?, ?, ?, ?, ?, ?, ?, ?, ?)
ON DUPLICATE KEY UPDATE
ip = VALUES(ip),
controller_name = VALUES(controller_name),
controller_action = VALUES(controller_action),
view_state = VALUES(view_state),
params = VALUES(params),
view_date = VALUES(view_date),
robot_key = VALUES(robot_key)
Params: 0, , , XenForo_ControllerPublic_Member, RecentActivity, valid, user_id=14564, 1752052420,
Run Time: 0.015892
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('page_nav', 'wf_widget_wrapper', 'wf_widget_threads', 'wf_widget_online_staff', 'wf_widget_online_users', 'wf_widget_profile_posts', 'wf_widget_stats', 'member_recent_activity', 'nat_childlinks')
AND style_id = ?
AND language_id = ?
Params: 2, 2
Run Time: 0.011853
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 9 | Using where |
SELECT title, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
AND title IN ('home')
Params: 2
Run Time: 0.014198
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_phrase_compiled | const | PRIMARY | PRIMARY | 106 | const,const | 1 | |
SELECT thread.*
,
user.*, IF(user.username IS NULL, thread.username, user.username) AS username,
node.title AS node_title, node.node_name
FROM xf_thread AS thread
LEFT JOIN xf_user AS user ON
(user.user_id = thread.user_id)
LEFT JOIN xf_node AS node ON
(node.node_id = thread.node_id)
WHERE (thread.node_id IN ('54')) AND (thread.discussion_state IN ('visible'))
ORDER BY thread.post_date DESC
LIMIT 30
Run Time: 0.043554
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 | | 2615 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.thread.user_id | 1 | |
SIMPLE | node | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.thread.node_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.007605
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_permission_cache_content | ref | PRIMARY | PRIMARY | 31 | const,const | 73 | 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 (54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54, 54)
Run Time: 0.012465
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 | |
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 (391643, 391609, 391496, 391454, 391398, 391377, 391355, 391341, 391256, 391240)
AND (data.filename LIKE '%.png' OR
data.filename LIKE '%.jpg' OR
data.filename LIKE '%.jpeg' OR
data.filename LIKE '%.jpe' OR
data.filename LIKE '%.gif')
GROUP BY attachment.content_id
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.011698
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | attachment | range | content_type_id_date | content_type_id_date | 31 | | 10 | Using index condition; Using temporary; Using filesort |
SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.attachment.data_id | 1 | Using where |
SELECT
post.*
FROM xf_post AS post
WHERE post.post_id IN (391643, 391609, 391496, 391454, 391398, 391377, 391355, 391341, 391256, 391240)
Run Time: 0.012925
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | post | range | PRIMARY | PRIMARY | 4 | | 10 | 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 = ?
Params: 54
Run Time: 0.004170
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | node | const | PRIMARY | PRIMARY | 4 | const | 1 | |
SIMPLE | forum | 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 (391496, 391454, 391398, 391377, 391355, 391341, 391256, 391240)
AND (data.filename LIKE '%.png' OR
data.filename LIKE '%.jpg' OR
data.filename LIKE '%.jpeg' OR
data.filename LIKE '%.jpe' OR
data.filename LIKE '%.gif')
GROUP BY attachment.content_id
ORDER BY attachment.content_id, attachment.attach_date
Params: post
Run Time: 0.002477
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | attachment | range | content_type_id_date | content_type_id_date | 31 | | 8 | Using index condition; Using temporary; Using filesort |
SIMPLE | data | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.attachment.data_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 > 1752051520)
ORDER BY session_activity.view_date DESC
Run Time: 0.014044
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | session_activity | range | view_date | view_date | 4 | | 7 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.session_activity.user_id | 1 | |
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 > 1752051520)
ORDER BY session_activity.view_date DESC
Run Time: 0.016058
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | session_activity | range | view_date | view_date | 4 | | 7 | Using where |
SIMPLE | user | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.session_activity.user_id | 1 | |
SELECT data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('wfc_59d73e7ca2a9bffe8947d', 'wfc_1ba364531eabedf893b81')
Run Time: 0.012368
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | range | PRIMARY | PRIMARY | 27 | | 2 | Using where |
SELECT data_key, data_value
FROM xf_data_registry
WHERE data_key IN ('wfc_d911c77f12b0b1095b729')
Run Time: 0.019853
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_d911c77f12b0b1095b729, a:1:{s:29:"member_recent_activity_lock_6";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1752052420;}}
Run Time: 0.004559
SELECT profile_post.*
,
posting_user.*,
IF(posting_user.username IS NULL, profile_post.username, posting_user.username) AS username,
receiving_user.username
AS profile_username,
receiving_user.gender
AS profile_gender,
receiving_user.user_state
AS profile_user_state,
receiving_user.user_group_id
AS profile_user_group_id,
receiving_user.secondary_group_ids
AS profile_secondary_group_ids,
receiving_user.display_style_group_id
AS profile_display_style_group_id,
receiving_user.is_banned
AS profile_is_banned,
receiving_user.is_admin
AS profile_is_admin,
receiving_user.is_moderator
AS profile_is_moderator,
receiving_user.avatar_date
AS profile_avatar_date,
receiving_user.gravatar
AS profile_gravatar,
receiving_user.warning_points
AS profile_warning_points,
receiving_user.permission_combination_id
AS profile_permission_combination_id,
receiving_user_privacy.allow_view_profile
AS profile_allow_view_profile,
receiving_user_privacy.allow_post_profile
AS profile_allow_post_profile,
receiving_user_privacy.allow_send_personal_conversation
AS profile_allow_send_personal_conversation,
receiving_user_privacy.allow_view_identities
AS profile_allow_view_identities,
receiving_user_privacy.allow_receive_news_feed
AS profile_allow_allow_receive_news_feed,
IF (receiving_user_follow.follow_user_id, 1, 0)
AS following_0
FROM xf_profile_post AS profile_post
LEFT JOIN xf_user AS posting_user ON
(posting_user.user_id = profile_post.user_id)
LEFT JOIN xf_user AS receiving_user ON
(receiving_user.user_id = profile_post.profile_user_id)
LEFT JOIN xf_user_privacy AS receiving_user_privacy ON
(receiving_user_privacy.user_id = profile_post.profile_user_id)
LEFT JOIN xf_user_follow AS receiving_user_follow ON
(receiving_user_follow.user_id = profile_post.profile_user_id AND follow_user_id = 0)
WHERE (profile_post.message_state IN ('visible'))
ORDER BY profile_post.post_date DESC
LIMIT 15
Run Time: 0.073842
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | profile_post | ALL | | | | | 602 | Using where; Using temporary; Using filesort |
SIMPLE | posting_user | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.profile_post.user_id | 1 | |
SIMPLE | receiving_user | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.profile_post.profile_user_id | 1 | |
SIMPLE | receiving_user_privacy | eq_ref | PRIMARY | PRIMARY | 4 | quangbakinhdoanh.profile_post.profile_user_id | 1 | |
SIMPLE | receiving_user_follow | range | PRIMARY,follow_user_id | follow_user_id | 4 | | 1 | Using where; Using index; Using join buffer (flat, BNL join) |
INSERT INTO xf_data_registry
(data_key, data_value)
VALUES
(?, ?)
ON DUPLICATE KEY UPDATE
data_value = VALUES(data_value)
Params: wfc_59d73e7ca2a9bffe8947d, a:1:{s:24:"member_recent_activity_6";a:3:{s:4:"html";s:6287:"<ul class="WidgetFramework_WidgetRenderer_ProfilePosts_ProfilePostList">
<li id="profile-post-687" class="profilePostListItem " data-author="ralopalzmak">
<a href="members/ralopalzmak.16394/" class="avatar Av16394s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="ralopalzmak" /></a>
<div class="messageInfo">
<div class="messageContent">
<span class="poster">
<a href="members/ralopalzmak.16394/" class="username" dir="auto"><span class="style2">ralopalzmak</span></a>
</span>
<article><blockquote class="ugc baseHtml">STORE - <a href="https://www.facebook.com/AquaBurnCA/" rel="nofollow" class="externalLink" target="_blank">https://www.facebook.com/AquaBurnCA/</a> AquaBurn Canada FB - <a href="https://www.facebook.com/AquaBurnCanada/" rel="nofollow" class="externalLink" target="_blank">https://www.facebook.com/AquaBurnCanada/</a></blockquote></article>
</div>
<div class="messageMeta">
<div class="privateControls">
<a href="profile-posts/687/" title="Permalink" class="item muted"><abbr class="DateTime" data-time="1752037216" data-diff="15204" data-datestring="9/7/25" data-timestring="12:00">9/7/25 lúc 12:00</abbr></a>
</div>
<div class="publicControls">
<a href="profile-posts/687/" class="item Tooltip OverlayTrigger" title="Tương tác" data-tipclass="flipped" data-offsetX="7" data-offsetY="-7">•••</a>
</div>
</div>
</div>
</li>
<li id="profile-post-686" class="profilePostListItem " data-author="BariSlendDrops">
<a href="members/barislenddrops.16386/" class="avatar Av16386s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="BariSlendDrops" /></a>
<div class="messageInfo">
<div class="messageContent">
<span class="poster">
<a href="members/barislenddrops.16386/" class="username" dir="auto"><span class="style2">BariSlendDrops</span></a>
</span>
<article><blockquote class="ugc baseHtml">BariSlend BariSlend Reviews BariSlend Drops BariSlend Official Website BariSlend Consumer Reports</blockquote></article>
</div>
<div class="messageMeta">
<div class="privateControls">
<a href="profile-posts/686/" title="Permalink" class="item muted"><abbr class="DateTime" data-time="1751980623" data-diff="71797" data-datestring="8/7/25" data-timestring="20:17">8/7/25 lúc 20:17</abbr></a>
</div>
<div class="publicControls">
<a href="profile-posts/686/" class="item Tooltip OverlayTrigger" title="Tương tác" data-tipclass="flipped" data-offsetX="7" data-offsetY="-7">•••</a>
</div>
</div>
</div>
</li>
<li id="profile-post-685" class="profilePostListItem " data-author="FondetYkaro">
<a href="members/fondetykaro.16381/" class="avatar Av16381s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="FondetYkaro" /></a>
<div class="messageInfo">
<div class="messageContent">
<span class="poster">
<a href="members/fondetykaro.16381/" class="username" dir="auto"><span class="style2">FondetYkaro</span></a>
</span>
<article><blockquote class="ugc baseHtml">Fondet Ykaro Fondet Ykaro Reviews Fondet Ykaro Platform Fondet Ykaro Trading</blockquote></article>
</div>
<div class="messageMeta">
<div class="privateControls">
<a href="profile-posts/685/" title="Permalink" class="item muted"><abbr class="DateTime" data-time="1751975565" data-diff="76855" data-datestring="8/7/25" data-timestring="18:52">8/7/25 lúc 18:52</abbr></a>
</div>
<div class="publicControls">
<a href="profile-posts/685/" class="item Tooltip OverlayTrigger" title="Tương tác" data-tipclass="flipped" data-offsetX="7" data-offsetY="-7">•••</a>
</div>
</div>
</div>
</li>
<li id="profile-post-684" class="profilePostListItem " data-author="BitcoinATH">
<a href="members/bitcoinath.16314/" class="avatar Av16314s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_s.png" width="48" height="48" alt="BitcoinATH" /></a>
<div class="messageInfo">
<div class="messageContent">
<span class="poster">
<a href="members/bitcoinath.16314/" class="username" dir="auto"><span class="style2">BitcoinATH</span></a>
</span>
<article><blockquote class="ugc baseHtml">Bitcoin ATH App Bitcoin ATH Plattform Bitcoin ATH Seriös Bitcoin ATH Betrug oder seriös</blockquote></article>
</div>
<div class="messageMeta">
<div class="privateControls">
<a href="profile-posts/684/" title="Permalink" class="item muted"><abbr class="DateTime" data-time="1751694941" data-diff="357479" data-datestring="5/7/25" data-timestring="12:55">5/7/25 lúc 12:55</abbr></a>
</div>
<div class="publicControls">
<a href="profile-posts/684/" class="item Tooltip OverlayTrigger" title="Tương tác" data-tipclass="flipped" data-offsetX="7" data-offsetY="-7">•••</a>
</div>
</div>
</div>
</li>
<li id="profile-post-682" class="profilePostListItem " data-author="StarTrader">
<a href="members/startrader.16264/" class="avatar Av16264s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_female_s.png" width="48" height="48" alt="StarTrader" /></a>
<div class="messageInfo">
<div class="messageContent">
<span class="poster">
<a href="members/startrader.16264/" class="username" dir="auto"><span class="style2">StarTrader</span></a>
</span>
<article><blockquote class="ugc baseHtml">Star Trader Star Trader Reviews Star Trader App Star Trader Scam</blockquote></article>
</div>
<div class="messageMeta">
<div class="privateControls">
<a href="profile-posts/682/" title="Permalink" class="item muted"><abbr class="DateTime" data-time="1751521445" data-diff="530975" data-datestring="3/7/25" data-timestring="12:44">3/7/25 lúc 12:44</abbr></a>
</div>
<div class="publicControls">
<a href="profile-posts/682/" class="item Tooltip OverlayTrigger" title="Tương tác" data-tipclass="flipped" data-offsetX="7" data-offsetY="-7">•••</a>
</div>
</div>
</div>
</li>
</ul>";s:4:"time";i:1752052420;s:9:"extraData";a:1:{s:17:"requiredExternals";a:1:{s:3:"css";a:10:{i:0;s:24:"profile_post_list_simple";i:1;s:7:"bb_code";i:2;s:24:"profile_post_list_simple";i:3;s:7:"bb_code";i:4;s:24:"profile_post_list_simple";i:5;s:7:"bb_code";i:6;s:24:"profile_post_list_simple";i:7;s:7:"bb_code";i:8;s:24:"profile_post_list_simple";i:9;s:7:"bb_code";}}}}}
Run Time: 0.028269
INSERT INTO xf_data_registry
(data_key, data_value)
VALUES
(?, ?)
ON DUPLICATE KEY UPDATE
data_value = VALUES(data_value)
Params: wfc_d911c77f12b0b1095b729, a:1:{s:29:"member_recent_activity_lock_6";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1752052420;}}
Run Time: 0.028483
SELECT data_value
FROM xf_data_registry
WHERE data_key = ?
Params: boardTotals
Run Time: 0.004257
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_data_registry | const | PRIMARY | PRIMARY | 27 | const | 1 | |
SELECT title, phrase_text
FROM xf_phrase_compiled
WHERE language_id = ?
AND title IN ('staff_online_now', 'members_online_now', 'forum_statistics')
Params: 2
Run Time: 0.011031
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_phrase_compiled | range | PRIMARY | PRIMARY | 106 | | 3 | Using where |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('EWRporta_Navtabs', 'nat_linkstemplate', 'xm_widgets_threads', 'wf_hook_moderator_bar', 'PAGE_CONTAINER')
AND style_id = ?
AND language_id = ?
Params: 2, 2
Run Time: 0.001418
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | range | PRIMARY | PRIMARY | 60 | | 5 | Using where |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('BRME_page_container_head')
AND style_id = ?
AND language_id = ?
Params: 2, 2
Run Time: 0.007715
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 60 | const,const,const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('nat_bodyjs')
AND style_id = ?
AND language_id = ?
Params: 2, 2
Run Time: 0.027074
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 60 | const,const,const | 1 | |
SELECT title, template_compiled
FROM xf_template_compiled
WHERE title IN ('VigLink')
AND style_id = ?
AND language_id = ?
Params: 2, 2
Run Time: 0.001211
Select Type | Table | Type | Possible Keys | Key | Key Len | Ref | Rows | Extra |
---|
SIMPLE | xf_template_compiled | const | PRIMARY | PRIMARY | 60 | const,const,const | 1 | |