Page Time: 0.2478s

Memory: 5.7654 MB (Peak: 7.0996 MB)

Queries (31, time: 0.1005s, 40.6%)

  1. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('options', 'languages', 'contentTypes', 'codeEventListeners', 'deferredRun', 'simpleCache', 'addOns', 'defaultStyleProperties', 'routeFiltersIn', 'routeFiltersOut', 'routesPublic', 'nodeTypes', 'bannedIps', 'discouragedIps', 'styles', 'displayStyles', 'userBanners', 'smilies', 'bbCode', 'threadPrefixes', 'userTitleLadder', 'reportCounts', 'moderationCounts', 'userModerationCounts', 'notices', 'userFieldsInfo')
    Run Time: 0.000404
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using where
  2. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('brListenerClasses', 'brBriviumAddOns')
    Run Time: 0.000116
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT *
    FROM xf_brivium_addon
    ORDER BY addon_id
    Run Time: 0.000141
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_brivium_addonindex PRIMARY77 1 
  4. 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.000198
  5. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000126
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  6. 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: 33607
    Run Time: 0.000560
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  7. 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: 14
    Run Time: 0.000665
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  8. 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: 33607
    Run Time: 0.001171
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrefthread_id_post_date,thread_id_positionthread_id_post_date4const1Using where; Using filesort
    SIMPLEusereq_refPRIMARYPRIMARY4oilgaold_new.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4oilgaold_new.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4oilgaold_new.post.user_id1 
    SIMPLEsession_activityrefPRIMARYPRIMARY4oilgaold_new.post.user_id11Using where
    SIMPLEsessionrefPRIMARYPRIMARY4oilgaold_new.post.user_id11 
  9. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 33607
    Run Time: 0.000143
  10. 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 = 14 AND xf_thread.thread_id != 33607 AND xf_thread.post_date < 1696387360 AND xf_thread.discussion_state = 'visible'
    ORDER BY xf_thread.thread_id DESC
    LIMIT 2
    Run Time: 0.000647
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadrangePRIMARY,node_id_last_post_date,node_id_sticky_state_last_post,post_datePRIMARY4 8030Using where
    SIMPLExf_posteq_refPRIMARYPRIMARY4oilgaold_new.xf_thread.first_post_id1 
    SIMPLExf_nodeconstPRIMARYPRIMARY4const1 
  11. 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 = 14 AND xf_thread.thread_id != 33607 AND xf_thread.post_date > 1695782560 AND xf_thread.post_date < 1696387360 AND xf_thread.discussion_state = 'visible'
    ORDER BY xf_thread.view_count DESC
    LIMIT 6
    Run Time: 0.000675
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_threadrangePRIMARY,node_id_last_post_date,node_id_sticky_state_last_post,post_datepost_date4 6Using index condition; Using where; Using filesort
    SIMPLExf_posteq_refPRIMARYPRIMARY4oilgaold_new.xf_thread.first_post_id1 
    SIMPLExf_nodeconstPRIMARYPRIMARY4const1 
  12. 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 (36613)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000213
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const1Using index condition; Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4oilgaold_new.attachment.data_id1 
  13. 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 (36612)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000218
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const1Using index condition; Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4oilgaold_new.attachment.data_id1 
  14.  SELECT * FROM xf_post WHERE post_id = '36413'
    Run Time: 0.000334
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_postconstPRIMARYPRIMARY4const1 
  15. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: d8f09b5e79aa6905d2d573cadc34dc27, , 1696390960
    Run Time: 0.000219
  16. 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=33607, 1696387360,
    Run Time: 0.000174
  17. 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.000514
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEoptionsALLnode_id   47Using where; Using filesort
    SIMPLEnodeeq_refPRIMARYPRIMARY4oilgaold_new.options.node_id1 
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,oilgaold_new.options.node_id1Using where
  18. 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.000426
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 16Using where
  19. 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.000144
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 2Using where
  20. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('offline')
    Params: 2
    Run Time: 0.000126
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  21. 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 TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 2Using where
  22. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc_fad44cd50aebe48a543de')
    Run Time: 0.000162
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  23. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc_01b0874c13a55613000c2')
    Run Time: 0.000273
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  24. 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:1696387360;}}
    Run Time: 0.054220
  25. 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.000662
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadindexnode_id_last_post_date,node_id_sticky_state_last_postpost_date4 122Using where
    SIMPLEusereq_refPRIMARYPRIMARY4oilgaold_new.thread.user_id1 
  26. SELECT content_id, cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = 'node'
    Params: 1
    Run Time: 0.000219
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentrefPRIMARYPRIMARY31const,const50Using where
  27. 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.000612
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumrangePRIMARYPRIMARY4 1Using where
    SIMPLEnodeeq_refPRIMARYPRIMARY4oilgaold_new.forum.node_id1 
  28. 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:18069:"<div class="discussionList"> <div class="DiscussionList"> <dl class="sectionHeaders"> <dt class="posterAvatar"><a><span>&nbsp;</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-33807" 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="oles-tuyen-tho-han.t33807.html" title="" class="PreviewTooltip" data-previewUrl="oles-tuyen-tho-han.t33807.html/preview">OLES tuyển thợ 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"><abbr class="DateTime" title="" data-time="1695975392" data-diff="411968" data-datestring="29/9/23" data-timestring="15:16">29/9/23 lúc 15:16</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>55</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="1695975392" data-diff="411968" data-datestring="29/9/23" data-timestring="15:16">29/9/23 lúc 15:16</abbr></a></dd> </dl> </div> </li> <li id="thread-33806" 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="oles-tuyen-dung-tho-lap.t33806.html" title="" class="PreviewTooltip" data-previewUrl="oles-tuyen-dung-tho-lap.t33806.html/preview">OLES tuyển dụng thợ lắp</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="1695951820" data-diff="435540" data-datestring="29/9/23" data-timestring="08:43">29/9/23 lúc 08:43</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>87</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="1695951820" data-diff="435540" data-datestring="29/9/23" data-timestring="08:43">29/9/23 lúc 08:43</abbr></a></dd> </dl> </div> </li> <li id="thread-33805" 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="oles-tuyen-dung-qc-han-ky-su-du-an.t33805.html" title="" class="PreviewTooltip" data-previewUrl="oles-tuyen-dung-qc-han-ky-su-du-an.t33805.html/preview">OLES tuyển dụng QC hàn - Kỹ sư dự á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"><abbr class="DateTime" title="" data-time="1695951491" data-diff="435869" data-datestring="29/9/23" data-timestring="08:38">29/9/23 lúc 08:38</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>96</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="1695951491" data-diff="435869" data-datestring="29/9/23" data-timestring="08:38">29/9/23 lúc 08:38</abbr></a></dd> </dl> </div> </li> <li id="thread-33804" 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="thien-nam-offshore-jsc-tos-tuyen-dung-02-project-engineer.t33804.html" title="" class="PreviewTooltip" data-previewUrl="thien-nam-offshore-jsc-tos-tuyen-dung-02-project-engineer.t33804.html/preview">Thien Nam Offshore JSC (TOS) tuyển dụng 02 Project Engineer</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="1695892404" data-diff="494956" data-datestring="28/9/23" data-timestring="16:13">28/9/23 lúc 16:13</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>1,114</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="1695892404" data-diff="494956" data-datestring="28/9/23" data-timestring="16:13">28/9/23 lúc 16:13</abbr></a></dd> </dl> </div> </li> <li id="thread-33803" 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?1692324837" width="48" height="48" alt="dolphinlogs.com" /></a> </span> </div> <div class="listBlock main"> <div class="titleText"> <h3 class="title"> <a href="dolphin-tuyen-dung-chuyen-vien-dai-ly-hang-hai-logistics.t33803.html" title="" class="PreviewTooltip" data-previewUrl="dolphin-tuyen-dung-chuyen-vien-dai-ly-hang-hai-logistics.t33803.html/preview">DOLPHIN TUYỂN DỤNG CHUYÊN VIÊN ĐẠI LÝ HÀNG HẢI &amp; LOGISTICS</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"><span class="DateTime" title="">27/9/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>156</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"><span class="DateTime" title="27/9/23 lúc 17:05">27/9/23</span></a></dd> </dl> </div> </li> <li id="thread-33802" 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?1690251888" width="48" height="48" alt="PVDTraining" /></a> </span> </div> <div class="listBlock main"> <div class="titleText"> <h3 class="title"> <a href="updated-pvd-training-tuyen-dung-thuyen-vien-brazil.t33802.html" title="" class="PreviewTooltip" data-previewUrl="updated-pvd-training-tuyen-dung-thuyen-vien-brazil.t33802.html/preview">Updated - PVD Training - Tuyển dụng Thuyền viên - Brazil</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="">27/9/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>152</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="27/9/23 lúc 11:32">27/9/23</span></a></dd> </dl> </div> </li> <li id="thread-33801" 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?1690251888" 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-thuyen-vien-brazil.t33801.html" title="" class="PreviewTooltip" data-previewUrl="pvd-training-tuyen-dung-thuyen-vien-brazil.t33801.html/preview">PVD Training - Tuyển dụng Thuyền viên - Brazil</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="">27/9/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>107</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="27/9/23 lúc 08:19">27/9/23</span></a></dd> </dl> </div> </li> <li id="thread-33800" 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?1690251888" 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-thuyen-vien-brazil.t33800.html" title="" class="PreviewTooltip" data-previewUrl="pvd-training-tuyen-dung-thuyen-vien-brazil.t33800.html/preview">PVD Training - Tuyển dụng Thuyền viên - Brazil</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="">27/9/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>86</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="27/9/23 lúc 08:16">27/9/23</span></a></dd> </dl> </div> </li> <li id="thread-33799" class="discussionListItem visible " data-author="Minh Việt"> <div class="listBlock posterAvatar"> <span class="avatarContainer"> <a href="members/minh-viet.7566/" class="avatar Av7566s" data-avatarhtml="true"><img src="data/avatars/s/7/7566.jpg?1499661010" width="48" height="48" alt="Minh Việt" /></a> </span> </div> <div class="listBlock main"> <div class="titleText"> <h3 class="title"> <a href="kcn-dong-xuyen-vt-tuye-n-production-manger-30-40-mil.t33799.html" title="" class="PreviewTooltip" data-previewUrl="kcn-dong-xuyen-vt-tuye-n-production-manger-30-40-mil.t33799.html/preview">KCN Đông Xuyên - VT : Tuyển PRODUCTION MANGER 30-40 Mil</a> </h3> <div class="secondRow"> <div class="posterDate muted"> <a href="members/minh-viet.7566/" class="username" dir="auto" title="Thread starter">Minh Việt</a><span class="startDate">, <a class="faint"><span class="DateTime" title="">26/9/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>162</dd></dl> </div> <div class="listBlock lastPost"> <dl class="lastPostInfo"> <dt><a href="members/minh-viet.7566/" class="username" dir="auto">Minh Việt</a></dt> <dd class="muted"><a class="dateTime"><span class="DateTime" title="26/9/23 lúc 14:26">26/9/23</span></a></dd> </dl> </div> </li> <li id="thread-33798" class="discussionListItem visible " data-author="DongXuyenPort"> <div class="listBlock posterAvatar"> <span class="avatarContainer"> <a href="members/dongxuyenport.17557/" class="avatar Av17557s" data-avatarhtml="true"><img src="styles/default/xenforo/avatars/avatar_s.png" width="48" height="48" alt="DongXuyenPort" /></a> </span> </div> <div class="listBlock main"> <div class="titleText"> <h3 class="title"> <a href="cong-ty-cp-cang-dong-xuyen-can-tuyen-02-bao-ve-04-lao-dong-pho-thong-01-nv-kd.t33798.html" title="" class="PreviewTooltip" data-previewUrl="cong-ty-cp-cang-dong-xuyen-can-tuyen-02-bao-ve-04-lao-dong-pho-thong-01-nv-kd.t33798.html/preview">Công ty CP Cảng Đông Xuyên cần tuyển 02 Bảo vệ,04 Lao động phổ thông , 01 NV KD</a> </h3> <div class="secondRow"> <div class="posterDate muted"> <a href="members/dongxuyenport.17557/" class="username" dir="auto" title="Thread starter">DongXuyenPort</a><span class="startDate">, <a class="faint"><span class="DateTime" title="">25/9/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>146</dd></dl> </div> <div class="listBlock lastPost"> <dl class="lastPostInfo"> <dt><a href="members/dongxuyenport.17557/" class="username" dir="auto">DongXuyenPort</a></dt> <dd class="muted"><a class="dateTime"><span class="DateTime" title="25/9/23 lúc 15:03">25/9/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:1696387360;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.019712
  29. 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:1696387360;}}
    Run Time: 0.017011
  30. 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.000146
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 2Using where
  31. 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.000136
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 2Using where

Included Files (164, XenForo Classes: 61)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/Db.php
  19. library/Zend/Db/Adapter/Mysqli.php
  20. library/Zend/Db/Adapter/Abstract.php
  21. library/Zend/Db/Select.php
  22. library/Zend/Db/Expr.php
  23. library/Zend/Db/Profiler.php
  24. library/Zend/Db/Statement/Mysqli.php
  25. library/Zend/Db/Statement.php
  26. library/Zend/Db/Statement/Interface.php
  27. library/Zend/Db/Profiler/Query.php
  28. library/XenForo/CodeEvent.php
  29. library/XenForo/Options.php
  30. library/XenForo/Link.php
  31. library/XenForo/Template/Helper/Core.php
  32. library/Waindigo/Listener/InitDependencies.php
  33. library/Waindigo/Listener/InitDependencies/20150212.php
  34. library/Brivium/BriviumHelper/EventListeners.php
  35. library/Brivium/BriviumHelper/1010071/EventListeners.php
  36. library/VNXF/MoreThread/Listener.php
  37. library/VNXF/FacebookGraph/Listener.php
  38. library/VNXF/ImageView/Listener.php
  39. library/Waindigo/Listener/ControllerPreDispatch/20150212.php
  40. library/WidgetFramework/Listener.php
  41. library/WidgetFramework/Option.php
  42. library/NodesAsTabs/Listen.php
  43. library/EWRporta/Listener/Model.php
  44. library/Asp/OnlineStatus/Plugin/Plugin.php
  45. library/Brivium/BriviumHelper/Model/ListenerClass.php
  46. library/Brivium/BriviumHelper/1010071/Model/ListenerClass.php
  47. library/Brivium/CustomNodeStyle/EventListener/Listener.php
  48. library/XenForo/Router.php
  49. library/XenForo/Route/Filter.php
  50. library/XenForo/Route/Interface.php
  51. library/XenForo/Route/ResponseSuffix.php
  52. library/XenForo/Route/Prefix.php
  53. library/Waindigo/ShorterRoutes/Listener/InitRouterPublic.php
  54. library/Waindigo/ShorterRoutes/Route/ShorterRoute.php
  55. library/WidgetFramework/Route/Filter/PageX.php
  56. library/XenForo/Route/Prefix/Threads.php
  57. library/Waindigo/ShorterRoutes/Listener/LoadClass.php
  58. library/Waindigo/Listener/LoadClass.php
  59. library/Waindigo/Listener/LoadClass/20150106.php
  60. library/EWRporta/Listener/Route.php
  61. library/vtLai/UrlKhongDau/Listener.php
  62. library/Waindigo/ShorterRoutes/Extend/XenForo/Route/Prefix/Threads.php
  63. library/EWRporta/Route/Thread.php
  64. library/vtLai/UrlKhongDau/Threads.php
  65. library/XenForo/RouteMatch.php
  66. library/XenForo/ControllerPublic/Thread.php
  67. library/XenForo/ControllerPublic/Abstract.php
  68. library/XenForo/Controller.php
  69. library/xenCODE/AutoPing/Listener.php
  70. library/EWRporta/Listener/Controller.php
  71. library/Vinavb/CustomNodeIcon/Listener.php
  72. library/Andy/SimilarThreads/Listener.php
  73. library/VNXF/MoreThread/ControllerPublic/Thread.php
  74. library/VNXF/FacebookGraph/ControllerPublic/Thread.php
  75. library/WidgetFramework/XenForo/ControllerPublic/Thread.php
  76. library/NodesAsTabs/ControllerPublic/Thread.php
  77. library/EWRporta/ControllerPublic/Thread.php
  78. library/Andy/SimilarThreads/ControllerPublic/Thread.php
  79. library/XenForo/Input.php
  80. library/XenForo/Session.php
  81. library/XenForo/Helper/Ip.php
  82. library/XenForo/Visitor.php
  83. library/XenForo/Model/User.php
  84. library/WidgetFramework/XenForo/Model/User.php
  85. library/XenForo/Permission.php
  86. library/XenForo/Phrase.php
  87. library/XenForo/Locale.php
  88. library/EWRporta/Model/Perms.php
  89. library/XenForo/ControllerHelper/ForumThreadPost.php
  90. library/XenForo/ControllerHelper/Abstract.php
  91. library/XenForo/Model/Thread.php
  92. library/WidgetFramework/XenForo/Model/Thread.php
  93. library/XenForo/Model/Forum.php
  94. library/XenForo/Helper/String.php
  95. library/XenForo/Model/Post.php
  96. library/EWRporta/Model/Post.php
  97. library/Asp/OnlineStatus/Model/AspPost.php
  98. library/vtLai/UrlKhongDau/Converter.php
  99. library/Waindigo/ShorterRoutes/Link.php
  100. library/XenForo/Model/Attachment.php
  101. library/VNXF/ImageView/Attachment.php
  102. library/EWRporta/Model/Attachment.php
  103. library/XenForo/Model/Node.php
  104. library/Brivium/CustomNodeStyle/Model/Node.php
  105. library/XenForo/Route/Prefix/Categories.php
  106. library/vtLai/UrlKhongDau/Categories.php
  107. library/XenForo/Route/Prefix/Forums.php
  108. library/Waindigo/ShorterRoutes/Extend/XenForo/Route/Prefix/Forums.php
  109. library/vtLai/UrlKhongDau/Forums.php
  110. library/XenForo/ControllerResponse/View.php
  111. library/XenForo/ControllerResponse/Abstract.php
  112. library/VNXF/MoreThread/Model.php
  113. library/XenForo/Route/Prefix/Attachments.php
  114. library/VNXF/FacebookGraph/Model.php
  115. library/XenForo/Helper/Cookie.php
  116. library/NodesAsTabs/API.php
  117. library/NodesAsTabs/Model/Options.php
  118. library/XenForo/ViewRenderer/HtmlPublic.php
  119. library/XenForo/ViewRenderer/Abstract.php
  120. library/XenForo/Template/Public.php
  121. library/XenForo/Template/Abstract.php
  122. library/WidgetFramework/Core.php
  123. library/XenForo/Model/Moderator.php
  124. library/Brivium/QuickCreateThread/EventListeners/Listener.php
  125. library/Brivium/BriviumLibrary/EventListeners.php
  126. library/WidgetFramework/Model/Widget.php
  127. library/WidgetFramework/Helper/LayoutEditor.php
  128. library/WidgetFramework/Helper/Sort.php
  129. library/WidgetFramework/WidgetRenderer.php
  130. library/XenForo/ViewPublic/Thread/View.php
  131. library/XenForo/ViewPublic/Base.php
  132. library/XenForo/View.php
  133. library/EWRporta/Listener/ViewPublic.php
  134. library/VNXF/ImageView/View.php
  135. library/WidgetFramework/XenForo/View1.php
  136. library/EWRporta/ViewPublic/Custom.php
  137. library/XenForo/BbCode/Parser.php
  138. library/XenForo/BbCode/Formatter/Base.php
  139. library/EWRporta/Listener/BbCode.php
  140. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  141. library/EWRporta/BbCode/Formatter.php
  142. library/XenForo/ViewPublic/Helper/Message.php
  143. library/XenForo/BbCode/TextWrapper.php
  144. library/xenCODE/MetaKeywords/Listener.php
  145. library/WidgetFramework/WidgetRenderer/Empty.php
  146. library/WidgetFramework/WidgetRenderer/HtmlWithoutWrapper.php
  147. library/WidgetFramework/WidgetRenderer/Html.php
  148. library/XenForo/Route/Prefix/Members.php
  149. library/vtLai/UrlKhongDau/Members.php
  150. library/EWRporta/Listener/NavTabs.php
  151. library/NodesAsTabs/NavTabs.php
  152. library/WidgetFramework/WidgetRenderer/Threads.php
  153. library/WidgetFramework/Model/Cache.php
  154. library/WidgetFramework/Template/Extended.php
  155. library/EWRporta/Listener/Template.php
  156. library/EWRporta/Model/Promotes.php
  157. library/XenForo/Route/Prefix/Posts.php
  158. library/XenForo/Model/Avatar.php
  159. library/XenForo/Model/Session.php
  160. library/WidgetFramework/Helper/String.php
  161. library/XenForo/Debug.php
  162. library/Brivium/QuickCreateThread/Route/Prefix/CreateThread.php
  163. library/XenForo/ViewRenderer/Json.php
  164. library/Vinavb/CustomNodeIcon/Icon.php