Page Time: 0.2491s

Memory: 8.1613 MB (Peak: 11.5584 MB)

Queries (32, time: 0.0349s, 14.0%)

  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.004628
    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.000325
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000304
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  4. 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 10
    Run Time: 0.001453
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEprofile_postALL    303Using where; Using filesort
    SIMPLEposting_usereq_refPRIMARYPRIMARY4k46624_forum.profile_post.user_id1 
    SIMPLEreceiving_usereq_refPRIMARYPRIMARY4k46624_forum.profile_post.profile_user_id1 
    SIMPLEreceiving_user_privacyeq_refPRIMARYPRIMARY4k46624_forum.profile_post.profile_user_id1 
    SIMPLEreceiving_user_followeq_refPRIMARY,follow_user_idPRIMARY8k46624_forum.profile_post.profile_user_id,const1Using index
  5. SELECT thread.*
    	,
    	last_post_user.gender AS last_post_gender,
    	last_post_user.avatar_date AS last_post_avatar_date,
    	last_post_user.gravatar AS last_post_gravatar,
    	IF(last_post_user.username IS NULL, thread.last_post_username, last_post_user.username) AS last_post_username,
    	node.title AS node_title, node.node_name,
    	forum.*,
    	forum.last_post_id AS forum_last_post_id,
    	forum.last_post_date AS forum_last_post_date,
    	forum.last_post_user_id AS forum_last_post_user_id,
    	forum.last_post_username AS forum_last_post_username,
    	forum.last_thread_title AS forum_last_thread_title,
    	thread.last_post_id,
    	thread.last_post_date,
    	thread.last_post_user_id,
    	thread.last_post_username,
    	NULL AS thread_read_date,
    permission.cache_value AS node_permission_cache
    FROM xf_thread AS thread FORCE INDEX (last_post_date)
    
    	LEFT JOIN xf_user AS last_post_user ON
    		(last_post_user.user_id = thread.last_post_user_id)
    	LEFT JOIN xf_node AS node ON
    		(node.node_id = thread.node_id)
    	LEFT JOIN xf_forum AS forum ON
    		(forum.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_type <> 'redirect') AND (thread.discussion_state IN ('visible')) AND (thread.last_post_date > 1711346865) AND (forum.find_new = 1)
    ORDER BY thread.last_post_date DESC
     LIMIT 10
    Run Time: 0.001420
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadrangelast_post_datelast_post_date4 373Using index condition; Using where
    SIMPLEforumeq_refPRIMARYPRIMARY4k46624_forum.thread.node_id1Using where
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,k46624_forum.thread.node_id1Using where
    SIMPLElast_post_usereq_refPRIMARYPRIMARY4k46624_forum.thread.last_post_user_id1 
    SIMPLEnodeeq_refPRIMARYPRIMARY4k46624_forum.thread.node_id1 
  6. SELECT *
    FROM xf_node
    WHERE display_in_list = 1
    ORDER BY lft ASC
    Run Time: 0.001054
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_nodeALLdisplay_in_list   97Using where; Using filesort
  7. SELECT content_id, cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = 'node'
    Params: 1
    Run Time: 0.000659
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentrefPRIMARYPRIMARY31const,const96Using where
  8. SELECT forum.*
    	,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE forum.node_id IN (8, 9, 83, 10, 51, 81, 100, 11, 12, 13, 14, 15, 16, 104, 23, 92, 109, 94, 93, 17, 19, 18, 48, 22, 20, 21, 58, 90, 110, 59, 60, 61, 62, 64, 66, 103, 53, 105, 106, 44, 45, 107, 34, 35, 36, 37, 38, 39, 40, 41, 42, 77, 78, 102)
    Run Time: 0.001059
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumALLPRIMARY   67Using where
    SIMPLEnodeeq_refPRIMARYPRIMARY4k46624_forum.forum.node_id1Using index
  9. 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 > 1713937965)
    ORDER BY session_activity.view_date DESC
    Run Time: 0.004403
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsession_activityrangeview_dateview_date4 324Using where
    SIMPLEusereq_refPRIMARYPRIMARY4k46624_forum.session_activity.user_id1 
  10. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: boardTotals
    Run Time: 0.000378
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  11. SELECT 
    tag_id, 
    tag, 
    tag_url, 
    use_count, 
    last_use_date 
    FROM xf_tag 
    WHERE tag_id 
    ORDER BY use_count DESC 
    LIMIT 100
    Run Time: 0.002495
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_tagALL    1548Using where; Using filesort
  12. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: ec69067abdf4eb83cb6edc6ff37806b4, , 1713942465
    Run Time: 0.000370
  13. INSERT INTO xf_session_activity
    	(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date, robot_key)
    VALUES
    	(?, ?, ?, ?, ?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE
    	ip = VALUES(ip),
    	controller_name = VALUES(controller_name),
    	controller_action = VALUES(controller_action),
    	view_state = VALUES(view_state),
    	params = VALUES(params),
    	view_date = VALUES(view_date),
    	robot_key = VALUES(robot_key)
    Params: 0, , , XenForo_ControllerPublic_Forum, Index, valid, node_name=, 1713938865,
    Run Time: 0.000274
  14. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'node_forum_level_2', 'node_forum_level_n', 'node_category_level_1', 'node_link_level_n', 'wf_widget_share_page', 'wf_widget_wrapper', 'wf_widget_threads', 'wf_widget_xfrm_resources', 'wf_widget_online_users', 'wf_widget_stats', 'sidebar_tags_cloud', 'forum_list', 'notice_cookies', 'resources_tab_links', 'wf_hook_moderator_bar', 'wf_revealer', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 3, 4
    Run Time: 0.001455
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 18Using where
  15. SELECT *
    FROM xf_node
    
    ORDER BY lft ASC
    Run Time: 0.000668
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_nodeALL    97Using filesort
  16. SELECT content_id, cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = 'node'
    Params: 1
    Run Time: 0.000596
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentrefPRIMARYPRIMARY31const,const96Using where
  17. SELECT thread.*
    	,
    	user.gender, user.avatar_date, user.gravatar
    FROM xf_thread AS thread 
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.user_id)
    WHERE (thread.node_id IN (3, 8, 9, 83, 50, 10, 47, 51, 81, 99, 100, 4, 11, 12, 5, 13, 14, 15, 16, 104, 23, 57, 92, 109, 94, 93, 17, 19, 18, 48, 22, 20, 21, 58, 90, 110, 59, 60, 61, 62, 64, 66, 103, 52, 53, 105, 106, 43, 44, 45, 107, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 76, 77, 78, 101, 102)) AND (thread.discussion_state IN ('visible'))
    ORDER BY thread.post_date DESC
     LIMIT 15
    Run Time: 0.001080
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadindexnode_id_last_post_date,node_id_sticky_state_last_postpost_date4 33Using where
    SIMPLEusereq_refPRIMARYPRIMARY4k46624_forum.thread.user_id1 
  18. 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 (45, 53, 106, 59, 8, 45, 104, 106, 44, 44, 104, 106, 106, 106, 9)
    Run Time: 0.000854
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumrangePRIMARYPRIMARY4 8Using where
    SIMPLEnodeeq_refPRIMARYPRIMARY4k46624_forum.forum.node_id1 
  19. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc__1_forum_list')
    Run Time: 0.000402
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  20. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('wfc__1_forum_list_lock')
    Run Time: 0.000264
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  21. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_forum_list_lock, a:2:{s:18:"forum_list_lock_15";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1713938408;}s:18:"forum_list_lock_18";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1713938865;}}
    Run Time: 0.000388
  22. SELECT thread.*
    	,
    		1 AS fetched_last_post_user, user.gender, user.avatar_date, user.gravatar
    FROM xf_thread AS thread 
    
    		LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.last_post_user_id)
    WHERE (thread.node_id IN (3, 8, 9, 83, 50, 10, 47, 51, 81, 99, 100, 4, 11, 12, 5, 13, 14, 15, 16, 104, 23, 57, 92, 109, 94, 93, 17, 19, 18, 48, 22, 20, 21, 58, 90, 110, 59, 60, 61, 62, 64, 66, 103, 52, 53, 105, 106, 43, 44, 45, 107, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 76, 77, 78, 101, 102)) AND (thread.discussion_state IN ('visible')) AND (thread.reply_count > 0)
    ORDER BY thread.last_post_date DESC
     LIMIT 30
    Run Time: 0.001698
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadindexnode_id_last_post_date,node_id_sticky_state_last_postlast_post_date4 66Using where
    SIMPLEusereq_refPRIMARYPRIMARY4k46624_forum.thread.last_post_user_id1 
  23. 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 (106, 110, 100, 45, 106, 104, 51, 106, 53, 9, 23, 66, 59, 104, 106, 106, 45, 44, 44, 8, 106, 106, 104, 104, 106, 106, 106, 106, 9, 104)
    Run Time: 0.001261
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumrangePRIMARYPRIMARY4 13Using where
    SIMPLEnodeeq_refPRIMARYPRIMARY4k46624_forum.forum.node_id1 
  24. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_forum_list, a:2:{s:13:"forum_list_15";a:3:{s:4:"html";s:2669:"<div class="avatarList"> <ul> <li class="resource-277 resource-category-17"> <a href="resources/update-sat-liste-define-os-6-4-basis-von-cavit.277/" class="avatar NoOverlay"> <img src="" class="resourceIcon" width="48" height="48" /> </a> <a href="resources/update-sat-liste-define-os-6-4-basis-von-cavit.277/">update Sat liste define os 6.4 basis von cavit</a> <div class="userTitle"><a href="members/jchan.33935/">jchan</a> posted <span class="DateTime" title="15. Dezember 2023 um 14:56 Uhr">15. Dezember 2023</span></div> </li> <li class="resource-276 resource-category-17"> <a href="resources/settings-fuer-octagon-sf8008-auf-define-basis.276/" class="avatar NoOverlay"> <img src="" class="resourceIcon" width="48" height="48" /> </a> <a href="resources/settings-fuer-octagon-sf8008-auf-define-basis.276/">Settings für octagon sf8008 auf define basis</a> <div class="userTitle"><a href="members/jchan.33935/">jchan</a> posted <span class="DateTime" title="14. Juli 2023 um 15:56 Uhr">14. Juli 2023</span></div> </li> <li class="resource-275 resource-category-81"> <a href="resources/h2testw-version-1-4.275/" class="avatar NoOverlay"> <img src="" class="resourceIcon" width="48" height="48" /> </a> <a href="resources/h2testw-version-1-4.275/">h2testw version:1.4</a> <div class="userTitle"><a href="members/smokey.2847/">Smokey</a> posted <span class="DateTime" title="26. Juni 2022 um 13:46 Uhr">26. Juni 2022</span></div> </li> <li class="resource-266 resource-category-81"> <a href="resources/notepad-x64.266/" class="avatar NoOverlay"> <img src="" class="resourceIcon" width="48" height="48" /> </a> <a href="resources/notepad-x64.266/">Notepad++.x64</a> <div class="userTitle"><a href="members/mcflyvirus.850/">McFlyVirus</a> posted <span class="DateTime" title="12. März 2021 um 13:14 Uhr">12. März 2021</span></div> </li> <li class="resource-265 resource-category-81"> <a href="resources/notepad-x32.265/" class="avatar NoOverlay"> <img src="" class="resourceIcon" width="48" height="48" /> </a> <a href="resources/notepad-x32.265/">Notepad++ x32</a> <div class="userTitle"><a href="members/mcflyvirus.850/">McFlyVirus</a> posted <span class="DateTime" title="12. März 2021 um 13:12 Uhr">12. März 2021</span></div> </li> </ul> </div>";s:4:"time";i:1713938408;s:9:"extraData";a:1:{s:17:"requiredExternals";a:1:{s:3:"css";a:1:{i:0;s:10:"wf_default";}}}}s:13:"forum_list_18";a:2:{s:4:"html";s:7074:"<div class="avatarList"> <ul> <li class="thread-3100 thread-node-106"> <a href="members/acipayamli.1260/" class="avatar Av1260s" data-avatarhtml="true"><img src="data/avatars/s/1/1260.jpg?1584551279" width="48" height="48" alt="acipayamli" /></a> <a title="Treiber Update Info OCTAGON SF8008 SF8008m Supreme SX988" class="Tooltip" href="posts/130044/"> Treiber Update Info OCTAGON... </a> <div class="userTitle"> <a href="members/acipayamli.1260/" class="username">acipayamli</a> postete <abbr class="DateTime" data-time="1713901462" data-diff="37403" data-datestring="23. April 2024" data-timestring="21:44">23. April 2024 um 21:44 Uhr</abbr> </div> </li> <li class="thread-10499 thread-node-110"> <a href="members/smokey.2847/" class="avatar Av2847s" data-avatarhtml="true"><img src="data/avatars/s/2/2847.jpg?1486837420" width="48" height="48" alt="Smokey" /></a> <a title="Scripts to create standard or non-standard partitions for Multiboot slots. (and other experiments)" class="Tooltip" href="posts/130043/"> Scripts to create standard or... </a> <div class="userTitle"> <a href="members/smokey.2847/" class="username">Smokey</a> postete <abbr class="DateTime" data-time="1713893905" data-diff="44960" data-datestring="23. April 2024" data-timestring="19:38">23. April 2024 um 19:38 Uhr</abbr> </div> </li> <li class="thread-65377 thread-node-100"> <a href="members/suedschwede.13333/" class="avatar Av13333s" data-avatarhtml="true"><img src="data/avatars/s/13/13333.jpg?1575197186" width="48" height="48" alt="Südschwede" /></a> <a title="Octagon SF8008 Probleme mit Der Front panel und IR-LED Empfänger (manchmal Bootprobleme)" class="Tooltip" href="posts/130040/"> Octagon SF8008 Probleme mit Der... </a> <div class="userTitle"> <a href="members/suedschwede.13333/" class="username">Südschwede</a> postete <abbr class="DateTime" data-time="1713883350" data-diff="55515" data-datestring="23. April 2024" data-timestring="16:42">23. April 2024 um 16:42 Uhr</abbr> </div> </li> <li class="thread-91614 thread-node-45"> <a href="members/octagon-support.3/" class="avatar Av3s" data-avatarhtml="true"><img src="data/avatars/s/0/3.jpg?1458239853" width="48" height="48" alt="OCTAGON-Support" /></a> <a title="SF8008 4K Combo Netflix goruntu kalitesi sorunu" class="Tooltip" href="posts/130027/"> SF8008 4K Combo Netflix goruntu... </a> <div class="userTitle"> <a href="members/octagon-support.3/" class="username">OCTAGON-Support</a> postete <abbr class="DateTime" data-time="1713807773" data-diff="131092" data-datestring="22. April 2024" data-timestring="19:42">22. April 2024 um 19:42 Uhr</abbr> </div> </li> <li class="thread-91073 thread-node-106"> <a href="members/suedschwede.13333/" class="avatar Av13333s" data-avatarhtml="true"><img src="data/avatars/s/13/13333.jpg?1575197186" width="48" height="48" alt="Südschwede" /></a> <a title="(gelöst, solved) SF8008 Netflix Addon - Manage cookies banner nicht ansteuerbar" class="Tooltip" href="posts/130025/"> (gelöst, solved) SF8008 Netflix... </a> <div class="userTitle"> <a href="members/suedschwede.13333/" class="username">Südschwede</a> postete <abbr class="DateTime" data-time="1713804166" data-diff="134699" data-datestring="22. April 2024" data-timestring="18:42">22. April 2024 um 18:42 Uhr</abbr> </div> </li> <li class="thread-46031 thread-node-104"> <a href="members/octagon-support.3/" class="avatar Av3s" data-avatarhtml="true"><img src="data/avatars/s/0/3.jpg?1458239853" width="48" height="48" alt="OCTAGON-Support" /></a> <a title="Neue Software für ALLE Modelle - New Software for ALL Models - TÜM Modellere Yeni yazilim" class="Tooltip" href="posts/130024/"> Neue Software für ALLE Modelle... </a> <div class="userTitle"> <a href="members/octagon-support.3/" class="username">OCTAGON-Support</a> postete <abbr class="DateTime" data-time="1713802515" data-diff="136350" data-datestring="22. April 2024" data-timestring="18:15">22. April 2024 um 18:15 Uhr</abbr> </div> </li> <li class="thread-81027 thread-node-51"> <a href="members/octagon-support.3/" class="avatar Av3s" data-avatarhtml="true"><img src="data/avatars/s/0/3.jpg?1458239853" width="48" height="48" alt="OCTAGON-Support" /></a> <a title="Bald lieferbar.. coming soon.. çok yakında.." class="Tooltip" href="posts/130023/"> Bald lieferbar.. coming soon..... </a> <div class="userTitle"> <a href="members/octagon-support.3/" class="username">OCTAGON-Support</a> postete <abbr class="DateTime" data-time="1713802491" data-diff="136374" data-datestring="22. April 2024" data-timestring="18:14">22. April 2024 um 18:14 Uhr</abbr> </div> </li> <li class="thread-4473 thread-node-106"> <a href="members/octagon-support.3/" class="avatar Av3s" data-avatarhtml="true"><img src="data/avatars/s/0/3.jpg?1458239853" width="48" height="48" alt="OCTAGON-Support" /></a> <a title="OCTAGON SF8008/SF8008m Mini Multiboot with Octagon SX88 Linux OS" class="Tooltip" href="posts/130022/"> OCTAGON SF8008/SF8008m Mini... </a> <div class="userTitle"> <a href="members/octagon-support.3/" class="username">OCTAGON-Support</a> postete <abbr class="DateTime" data-time="1713802392" data-diff="136473" data-datestring="22. April 2024" data-timestring="18:13">22. April 2024 um 18:13 Uhr</abbr> </div> </li> <li class="thread-91605 thread-node-53"> <a href="members/beegee.16015/" class="avatar Av16015s" data-avatarhtml="true"><img src="styles/aurora/xenforo/avatars/avatar_s.png" width="48" height="48" alt="BeeGee" /></a> <a href="posts/130000/"> DefineOS </a> <div class="userTitle"> <a href="members/beegee.16015/" class="username">BeeGee</a> postete <abbr class="DateTime" data-time="1713709963" data-diff="228902" data-datestring="21. April 2024" data-timestring="16:32">21. April 2024 um 16:32 Uhr</abbr> </div> </li> <li class="thread-3711 thread-node-9"> <a href="members/varga400.56693/" class="avatar Av56693s" data-avatarhtml="true"><img src="styles/aurora/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Varga400" /></a> <a href="posts/129996/"> Octagon SX888 m3u support </a> <div class="userTitle"> <a href="members/varga400.56693/" class="username">Varga400</a> postete <abbr class="DateTime" data-time="1713702241" data-diff="236624" data-datestring="21. April 2024" data-timestring="14:24">21. April 2024 um 14:24 Uhr</abbr> </div> </li> </ul> </div> <div id="PreviewTooltip"> <span class="arrow"><span></span></span> <div class="section"> <div class="primaryContent previewContent"> <span class="PreviewContents">Die Seite wird geladen...</span> </div> </div> </div>";s:4:"time";i:1713938865;}}
    Run Time: 0.000790
  25. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_forum_list_lock, a:2:{s:18:"forum_list_lock_15";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1713938408;}s:18:"forum_list_lock_18";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1713938865;}}
    Run Time: 0.000325
  26. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_forum_list_lock, a:2:{s:18:"forum_list_lock_15";a:2:{s:4:"html";s:1:"1";s:4:"time";i:1713938865;}s:18:"forum_list_lock_18";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1713938865;}}
    Run Time: 0.000260
  27. SELECT resource_category.*
    	,
    	permission.cache_value AS category_permission_cache
    FROM xf_resource_category AS resource_category
    
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'resource_category'
    			AND permission.content_id = resource_category.resource_category_id)
    ORDER BY resource_category.lft
    Run Time: 0.001999
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEresource_categoryALL    88Using filesort
    SIMPLEpermissioneq_refPRIMARYPRIMARY35const,const,k46624_forum.resource_category.resource_category_id1Using where
  28. SELECT resource.*
    	,
    	category.*, category.last_update AS category_last_update, resource.last_update,
    	resource_update.message AS description,
    	user.*, user_profile.*, IF(user.username IS NULL, resource.username, user.username) AS username
    FROM xf_resource AS resource
    
    	LEFT JOIN xf_resource_category AS category ON
    		(category.resource_category_id = resource.resource_category_id)
    	LEFT JOIN xf_resource_update AS resource_update ON
    		(resource_update.resource_update_id = resource.description_update_id)
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = resource.user_id)
    	LEFT JOIN xf_user_profile AS user_profile ON
    		(user_profile.user_id = resource.user_id)
    WHERE (resource.resource_category_id IN (2, 5, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 6, 40, 41, 42, 3, 7, 8, 9, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 10, 56, 57, 58, 17, 11, 59, 60, 13, 12, 77, 75, 76, 16, 61, 62, 14, 15, 78, 79, 80, 82, 81, 18, 19, 20, 21, 63, 64, 65, 22, 23, 66, 67, 24, 25, 68, 69, 70, 71, 26, 27, 72, 73, 74)) AND (resource.resource_state IN ('visible'))
    ORDER BY resource.resource_date DESC
     LIMIT 5
    Run Time: 0.002483
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEresourceALLcategory_last_update,category_rating_weighted   257Using where; Using filesort
    SIMPLEcategoryeq_refPRIMARYPRIMARY4k46624_forum.resource.resource_category_id1Using where
    SIMPLEresource_updateeq_refPRIMARYPRIMARY4k46624_forum.resource.description_update_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4k46624_forum.resource.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4k46624_forum.resource.user_id1 
  29. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_forum_list, a:2:{s:13:"forum_list_15";a:3:{s:4:"html";s:2669:"<div class="avatarList"> <ul> <li class="resource-277 resource-category-17"> <a href="resources/update-sat-liste-define-os-6-4-basis-von-cavit.277/" class="avatar NoOverlay"> <img src="" class="resourceIcon" width="48" height="48" /> </a> <a href="resources/update-sat-liste-define-os-6-4-basis-von-cavit.277/">update Sat liste define os 6.4 basis von cavit</a> <div class="userTitle"><a href="members/jchan.33935/">jchan</a> posted <span class="DateTime" title="15. Dezember 2023 um 14:56 Uhr">15. Dezember 2023</span></div> </li> <li class="resource-276 resource-category-17"> <a href="resources/settings-fuer-octagon-sf8008-auf-define-basis.276/" class="avatar NoOverlay"> <img src="" class="resourceIcon" width="48" height="48" /> </a> <a href="resources/settings-fuer-octagon-sf8008-auf-define-basis.276/">Settings für octagon sf8008 auf define basis</a> <div class="userTitle"><a href="members/jchan.33935/">jchan</a> posted <span class="DateTime" title="14. Juli 2023 um 15:56 Uhr">14. Juli 2023</span></div> </li> <li class="resource-275 resource-category-81"> <a href="resources/h2testw-version-1-4.275/" class="avatar NoOverlay"> <img src="" class="resourceIcon" width="48" height="48" /> </a> <a href="resources/h2testw-version-1-4.275/">h2testw version:1.4</a> <div class="userTitle"><a href="members/smokey.2847/">Smokey</a> posted <span class="DateTime" title="26. Juni 2022 um 13:46 Uhr">26. Juni 2022</span></div> </li> <li class="resource-266 resource-category-81"> <a href="resources/notepad-x64.266/" class="avatar NoOverlay"> <img src="" class="resourceIcon" width="48" height="48" /> </a> <a href="resources/notepad-x64.266/">Notepad++.x64</a> <div class="userTitle"><a href="members/mcflyvirus.850/">McFlyVirus</a> posted <span class="DateTime" title="12. März 2021 um 13:14 Uhr">12. März 2021</span></div> </li> <li class="resource-265 resource-category-81"> <a href="resources/notepad-x32.265/" class="avatar NoOverlay"> <img src="" class="resourceIcon" width="48" height="48" /> </a> <a href="resources/notepad-x32.265/">Notepad++ x32</a> <div class="userTitle"><a href="members/mcflyvirus.850/">McFlyVirus</a> posted <span class="DateTime" title="12. März 2021 um 13:12 Uhr">12. März 2021</span></div> </li> </ul> </div>";s:4:"time";i:1713938865;s:9:"extraData";a:1:{s:17:"requiredExternals";a:1:{s:3:"css";a:1:{i:0;s:10:"wf_default";}}}}s:13:"forum_list_18";a:2:{s:4:"html";s:7074:"<div class="avatarList"> <ul> <li class="thread-3100 thread-node-106"> <a href="members/acipayamli.1260/" class="avatar Av1260s" data-avatarhtml="true"><img src="data/avatars/s/1/1260.jpg?1584551279" width="48" height="48" alt="acipayamli" /></a> <a title="Treiber Update Info OCTAGON SF8008 SF8008m Supreme SX988" class="Tooltip" href="posts/130044/"> Treiber Update Info OCTAGON... </a> <div class="userTitle"> <a href="members/acipayamli.1260/" class="username">acipayamli</a> postete <abbr class="DateTime" data-time="1713901462" data-diff="37403" data-datestring="23. April 2024" data-timestring="21:44">23. April 2024 um 21:44 Uhr</abbr> </div> </li> <li class="thread-10499 thread-node-110"> <a href="members/smokey.2847/" class="avatar Av2847s" data-avatarhtml="true"><img src="data/avatars/s/2/2847.jpg?1486837420" width="48" height="48" alt="Smokey" /></a> <a title="Scripts to create standard or non-standard partitions for Multiboot slots. (and other experiments)" class="Tooltip" href="posts/130043/"> Scripts to create standard or... </a> <div class="userTitle"> <a href="members/smokey.2847/" class="username">Smokey</a> postete <abbr class="DateTime" data-time="1713893905" data-diff="44960" data-datestring="23. April 2024" data-timestring="19:38">23. April 2024 um 19:38 Uhr</abbr> </div> </li> <li class="thread-65377 thread-node-100"> <a href="members/suedschwede.13333/" class="avatar Av13333s" data-avatarhtml="true"><img src="data/avatars/s/13/13333.jpg?1575197186" width="48" height="48" alt="Südschwede" /></a> <a title="Octagon SF8008 Probleme mit Der Front panel und IR-LED Empfänger (manchmal Bootprobleme)" class="Tooltip" href="posts/130040/"> Octagon SF8008 Probleme mit Der... </a> <div class="userTitle"> <a href="members/suedschwede.13333/" class="username">Südschwede</a> postete <abbr class="DateTime" data-time="1713883350" data-diff="55515" data-datestring="23. April 2024" data-timestring="16:42">23. April 2024 um 16:42 Uhr</abbr> </div> </li> <li class="thread-91614 thread-node-45"> <a href="members/octagon-support.3/" class="avatar Av3s" data-avatarhtml="true"><img src="data/avatars/s/0/3.jpg?1458239853" width="48" height="48" alt="OCTAGON-Support" /></a> <a title="SF8008 4K Combo Netflix goruntu kalitesi sorunu" class="Tooltip" href="posts/130027/"> SF8008 4K Combo Netflix goruntu... </a> <div class="userTitle"> <a href="members/octagon-support.3/" class="username">OCTAGON-Support</a> postete <abbr class="DateTime" data-time="1713807773" data-diff="131092" data-datestring="22. April 2024" data-timestring="19:42">22. April 2024 um 19:42 Uhr</abbr> </div> </li> <li class="thread-91073 thread-node-106"> <a href="members/suedschwede.13333/" class="avatar Av13333s" data-avatarhtml="true"><img src="data/avatars/s/13/13333.jpg?1575197186" width="48" height="48" alt="Südschwede" /></a> <a title="(gelöst, solved) SF8008 Netflix Addon - Manage cookies banner nicht ansteuerbar" class="Tooltip" href="posts/130025/"> (gelöst, solved) SF8008 Netflix... </a> <div class="userTitle"> <a href="members/suedschwede.13333/" class="username">Südschwede</a> postete <abbr class="DateTime" data-time="1713804166" data-diff="134699" data-datestring="22. April 2024" data-timestring="18:42">22. April 2024 um 18:42 Uhr</abbr> </div> </li> <li class="thread-46031 thread-node-104"> <a href="members/octagon-support.3/" class="avatar Av3s" data-avatarhtml="true"><img src="data/avatars/s/0/3.jpg?1458239853" width="48" height="48" alt="OCTAGON-Support" /></a> <a title="Neue Software für ALLE Modelle - New Software for ALL Models - TÜM Modellere Yeni yazilim" class="Tooltip" href="posts/130024/"> Neue Software für ALLE Modelle... </a> <div class="userTitle"> <a href="members/octagon-support.3/" class="username">OCTAGON-Support</a> postete <abbr class="DateTime" data-time="1713802515" data-diff="136350" data-datestring="22. April 2024" data-timestring="18:15">22. April 2024 um 18:15 Uhr</abbr> </div> </li> <li class="thread-81027 thread-node-51"> <a href="members/octagon-support.3/" class="avatar Av3s" data-avatarhtml="true"><img src="data/avatars/s/0/3.jpg?1458239853" width="48" height="48" alt="OCTAGON-Support" /></a> <a title="Bald lieferbar.. coming soon.. çok yakında.." class="Tooltip" href="posts/130023/"> Bald lieferbar.. coming soon..... </a> <div class="userTitle"> <a href="members/octagon-support.3/" class="username">OCTAGON-Support</a> postete <abbr class="DateTime" data-time="1713802491" data-diff="136374" data-datestring="22. April 2024" data-timestring="18:14">22. April 2024 um 18:14 Uhr</abbr> </div> </li> <li class="thread-4473 thread-node-106"> <a href="members/octagon-support.3/" class="avatar Av3s" data-avatarhtml="true"><img src="data/avatars/s/0/3.jpg?1458239853" width="48" height="48" alt="OCTAGON-Support" /></a> <a title="OCTAGON SF8008/SF8008m Mini Multiboot with Octagon SX88 Linux OS" class="Tooltip" href="posts/130022/"> OCTAGON SF8008/SF8008m Mini... </a> <div class="userTitle"> <a href="members/octagon-support.3/" class="username">OCTAGON-Support</a> postete <abbr class="DateTime" data-time="1713802392" data-diff="136473" data-datestring="22. April 2024" data-timestring="18:13">22. April 2024 um 18:13 Uhr</abbr> </div> </li> <li class="thread-91605 thread-node-53"> <a href="members/beegee.16015/" class="avatar Av16015s" data-avatarhtml="true"><img src="styles/aurora/xenforo/avatars/avatar_s.png" width="48" height="48" alt="BeeGee" /></a> <a href="posts/130000/"> DefineOS </a> <div class="userTitle"> <a href="members/beegee.16015/" class="username">BeeGee</a> postete <abbr class="DateTime" data-time="1713709963" data-diff="228902" data-datestring="21. April 2024" data-timestring="16:32">21. April 2024 um 16:32 Uhr</abbr> </div> </li> <li class="thread-3711 thread-node-9"> <a href="members/varga400.56693/" class="avatar Av56693s" data-avatarhtml="true"><img src="styles/aurora/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Varga400" /></a> <a href="posts/129996/"> Octagon SX888 m3u support </a> <div class="userTitle"> <a href="members/varga400.56693/" class="username">Varga400</a> postete <abbr class="DateTime" data-time="1713702241" data-diff="236624" data-datestring="21. April 2024" data-timestring="14:24">21. April 2024 um 14:24 Uhr</abbr> </div> </li> </ul> </div> <div id="PreviewTooltip"> <span class="arrow"><span></span></span> <div class="section"> <div class="primaryContent previewContent"> <span class="PreviewContents">Die Seite wird geladen...</span> </div> </div> </div>";s:4:"time";i:1713938865;}}
    Run Time: 0.000622
  30. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_forum_list_lock, a:2:{s:18:"forum_list_lock_15";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1713938865;}s:18:"forum_list_lock_18";a:2:{s:4:"html";s:1:"0";s:4:"time";i:1713938865;}}
    Run Time: 0.000308
  31. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('members_online_now', 'forum_statistics')
    Params: 4
    Run Time: 0.000299
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledrangePRIMARYPRIMARY106 2Using where
  32. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('bbm_js')
    	AND style_id = ?
    	AND language_id = ?
    Params: 3, 4
    Run Time: 0.000277
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (154, XenForo Classes: 70)

  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/Brivium/BriviumHelper/EventListeners.php
  33. library/Brivium/BriviumHelper/1000200/EventListeners.php
  34. library/Tapatalk/Listener/LoadClassModel.php
  35. library/WidgetFramework/Listener.php
  36. library/WidgetFramework/Option.php
  37. library/COBGCE/Listener.php
  38. library/Waindigo/Listener/InitDependencies.php
  39. library/Waindigo/Listener/InitDependencies/20150101.php
  40. library/Waindigo/Listener/ControllerPreDispatch/20141226.php
  41. library/COBAI/Listener.php
  42. library/BBM/Listeners/AllInOne.php
  43. library/Sedo/TinyQuattro/Listener/AllInOne.php
  44. library/XenForo/Router.php
  45. library/XenForo/Route/Filter.php
  46. library/XenForo/Route/Interface.php
  47. library/XenForo/Route/ResponseSuffix.php
  48. library/XenForo/Route/Prefix.php
  49. library/WidgetFramework/Route/Filter/PageX.php
  50. library/XenForo/Route/Prefix/Index.php
  51. library/WidgetFramework/XenForo/Route/Prefix/Index.php
  52. library/XenForo/RouteMatch.php
  53. library/BBM/Protection/Helper/ContentProtection.php
  54. library/XenForo/ControllerPublic/Index.php
  55. library/XenForo/ControllerPublic/Abstract.php
  56. library/XenForo/Controller.php
  57. library/Eagle/MostPopularTags/Listener.php
  58. library/WidgetFramework/XenForo/ControllerPublic/Index.php
  59. library/XenForo/Input.php
  60. library/XenForo/Session.php
  61. library/XenForo/Helper/Ip.php
  62. library/XenForo/Visitor.php
  63. library/XenForo/Model/User.php
  64. library/XenResource/Listener/Proxy.php
  65. library/WidgetFramework/XenForo/Model/User.php
  66. library/XenResource/Listener/Proxy/ModelUser.php
  67. library/XenForo/Permission.php
  68. library/XenForo/Helper/Php.php
  69. library/XenForo/Phrase.php
  70. library/XenForo/Locale.php
  71. library/WidgetFramework/Helper/Index.php
  72. library/XenForo/ControllerResponse/ReroutePath.php
  73. library/XenForo/ControllerResponse/Abstract.php
  74. library/Tapatalk/Listener/ControllerPostDispatch.php
  75. library/XenForo/Route/Prefix/Forums.php
  76. library/XenForo/ControllerPublic/Forum.php
  77. library/Andy/SimilarThreads/Listener.php
  78. library/WidgetFramework/XenForo/ControllerPublic/Forum.php
  79. library/Eagle/MostPopularTags/ControllerPublic/Tags.php
  80. library/Andy/SimilarThreads/ControllerPublic/Forum.php
  81. library/XenForo/Model/ProfilePost.php
  82. library/WidgetFramework/XenForo/Model/ProfilePost.php
  83. library/XenForo/Model/UserProfile.php
  84. library/XenForo/Model/Thread.php
  85. library/WidgetFramework/XenForo/Model/Thread.php
  86. library/XenForo/Model/Forum.php
  87. library/XenForo/Model/Node.php
  88. library/Tapatalk/Model/Node.php
  89. library/XenForo/NodeHandler/Category.php
  90. library/XenForo/NodeHandler/Abstract.php
  91. library/XenForo/NodeHandler/Forum.php
  92. library/XenForo/NodeHandler/LinkForum.php
  93. library/XenForo/Model/Category.php
  94. library/XenForo/Model/LinkForum.php
  95. library/XenForo/Helper/String.php
  96. library/XenForo/Model/Session.php
  97. library/XenForo/ControllerResponse/View.php
  98. library/Eagle/MostPopularTags/Model/MostPopularTags.php
  99. library/XenForo/Helper/Cookie.php
  100. library/XenForo/ViewRenderer/HtmlPublic.php
  101. library/XenForo/ViewRenderer/Abstract.php
  102. library/XenForo/Template/Public.php
  103. library/XenForo/Template/Abstract.php
  104. library/WidgetFramework/Core.php
  105. library/XenForo/Model/Moderator.php
  106. library/XenResource/Listener/Proxy/ModelModerator.php
  107. library/WidgetFramework/Model/Widget.php
  108. library/WidgetFramework/Helper/Sort.php
  109. library/WidgetFramework/WidgetRenderer.php
  110. library/XenForo/ViewPublic/Forum/List.php
  111. library/XenForo/ViewPublic/Base.php
  112. library/XenForo/View.php
  113. library/WidgetFramework/XenForo/View1.php
  114. library/XenForo/ViewPublic/Helper/Node.php
  115. library/XenResource/Listener/Template.php
  116. library/WidgetFramework/WidgetRenderer/Empty.php
  117. library/WidgetFramework/WidgetRenderer/ShareThisPage.php
  118. library/WidgetFramework/WidgetRenderer/Threads.php
  119. library/WidgetFramework/Model/Cache.php
  120. library/WidgetFramework/WidgetRenderer/XFRM/Resources.php
  121. library/WidgetFramework/WidgetRenderer/OnlineUsers.php
  122. library/WidgetFramework/WidgetRenderer/Stats.php
  123. library/WidgetFramework/WidgetRenderer/Html.php
  124. library/WidgetFramework/WidgetRenderer/TemplateWithoutWrapper.php
  125. library/WidgetFramework/WidgetRenderer/Template.php
  126. library/XenForo/Route/Prefix/Members.php
  127. library/WidgetFramework/Template/Extended.php
  128. library/Sedo/TinyQuattro/Listener/Templates/Preloader.php
  129. library/Sedo/TinyQuattro/Helper/Quattro.php
  130. library/XenForo/Route/Prefix/Categories.php
  131. library/Tapatalk/EventListener/Hook.php
  132. library/COBDB/Listener.php
  133. library/XenTagMod/Listener/RepTemps.php
  134. library/XenForo/Route/Prefix/Posts.php
  135. library/Tapatalk/Listener/TemplatePostRender.php
  136. library/XenForo/Route/Prefix/LinkForums.php
  137. library/XenForo/Model/Avatar.php
  138. library/XenForo/Route/Prefix/ProfilePosts.php
  139. library/XenForo/Route/Prefix/Tags.php
  140. library/WidgetFramework/Helper/String.php
  141. library/XenForo/Route/Prefix/Threads.php
  142. library/XenForo/Helper/Discussion.php
  143. library/XenResource/Model/Category.php
  144. library/XenResource/Model/Resource.php
  145. library/XenResource/Model/Update.php
  146. library/XenResource/Model/Version.php
  147. library/XenResource/Route/Prefix/Resources.php
  148. library/XenForo/Helper/Criteria.php
  149. library/XenForo/Debug.php
  150. library/BBM/Helper/BbCodes.php
  151. mobiquo/mbqFrame/3rdLib/classTTConnection.php
  152. mobiquo/smartbanner/head.inc.php
  153. library/BBM/Listeners/Templates/Public.php
  154. library/XenForo/ViewRenderer/Json.php