2023-12-24 21:01:49 PST (INFO): 65890cac0bc175.94682580: Updating database version to 2.35.6 (end). 2023-12-24 21:01:58 PST (INFO): 65890cac891673.37467402: On wp_abj404_permalink_cache I'm updating various columns because we want: `Array ( [0] => `id` bigint not null [1] => `url` varchar(2048) not null [2] => `meta` tinytext not null [3] => `url_length` smallint default null [4] => `post_parent` bigint not null ) but we have: Array ( [0] => `id` bigint not null [1] => `url` varchar(2048) not null [2] => `meta` text not null [3] => `url_length` smallint default null [4] => `post_parent` bigint not null ) 2023-12-24 21:02:09 PST (INFO): I updated a column: alter table wp_abj404_permalink_cache change meta `meta` tinytext not null 2023-12-24 21:02:09 PST (INFO): No more differences found after updating the wp_abj404_permalink_cache table columns. All is well. 2023-12-24 21:02:09 PST (INFO): 65890cac891673.37467402: On wp_abj404_spelling_cache I'm updating various columns because we want: `Array ( [0] => `id` bigint not null auto_increment [1] => `url` varchar(2048) not null [2] => `matchdata` text not null ) but we have: Array ( [0] => `id` bigint not null auto_increment [1] => `url` varchar(2048) not null [2] => `matchdata` mediumtext not null ) 2023-12-24 21:02:10 PST (INFO): I updated a column: alter table wp_abj404_spelling_cache change matchdata `matchdata` text not null 2023-12-24 21:02:10 PST (INFO): No more differences found after updating the wp_abj404_spelling_cache table columns. All is well. 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/09/25/21-, Stored debug messages: 2023-12-24 21:02:26 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /2017/09/25/21- 2023-12-24 21:02:26 PST (DEBUG): Processing 404 for URL: /2017/09/25/21- | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /2017/09/25/21- 2023-12-24 21:02:27 PST (DEBUG): No posts or pages matching slug: 21- 2023-12-24 21:05:46 PST (DEBUG): Slow query (198.71 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '21 ', '2017 09 25 21 ', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/09/25/21-', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/09/25/21-') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/11/23/%D8%B7%D8%A8%D9%8A%D8%A8-%D8%A3%D8%B1%D8%AC%D9%86%D8%AA%D9%8A%D9%86%D9%8A-%D9%8A%D9%83%D8%B4%D9%81-%D9%85%D9%81%D8%A7%D8%AC%D8%A3%D8%A9-%D8%B5%D8%A7%D8%AF%D9%85%D8%A9-%D8%B9%D9%86-%D8%A7%D9%84%D8%B1/oubao168.org, Stored debug messages: 2023-12-24 21:04:24 PST (DEBUG): Processing 404 for URL: /2021/11/23/طبيب-أرجنتيني-يكشف-مفاجأة-صادمة-عن-الر/oubao168.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.v1ouqr6cggc0, REQUEST_URI: /2021/11/23/طبيب-أرجنتيني-يكشف-مفاجأة-صادمة-عن-الر/oubao168.org 2023-12-24 21:04:25 PST (DEBUG): No posts or pages matching slug: oubao168.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (80.59 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(555): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('oubao168 org', '2021 11 23 \xD8\xB7\xD8\xA8...', 'tags', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'oubao168 org', '2021 11 23 \xD8\xB7\xD8\xA8...', 'tags') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/11/23/\xD8\xB7\xD8\xA8...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/11/23/\xD8\xB7\xD8\xA8...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/02/16/%D9%85%D9%81%D8%AA%D9%8A-%D8%B3%D9%84%D8%B7%D9%86%D8%A9-%D8%B9%D9%85%D8%A7%D9%86-%D8%A2%D8%B1%D8%A7%D8%A6%D9%8A-%D8%A7%D9%84%D8%B3%D9%8A%D8%A7%D8%B3%D9%8A%D8%A9-%D9%84%D8%A7-%D8%AA%D8%A3%D8%AA%D9%8A/yxty168.com, Stored debug messages: 2023-12-24 21:04:57 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/02/16/مفتي-سلطنة-عمان-آرائي-السياسية-لا-تأتي/yxty168.com 2023-12-24 21:04:57 PST (DEBUG): Processing 404 for URL: /2022/02/16/مفتي-سلطنة-عمان-آرائي-السياسية-لا-تأتي/yxty168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2022/02/16/مفتي-سلطنة-عمان-آرائي-السياسية-لا-تأتي/yxty168.com 2023-12-24 21:04:58 PST (DEBUG): No posts or pages matching slug: yxty168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (47.93 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(555): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('yxty168 com', '2022 02 16 \xD9\x85\xD9\x81...', 'tags', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'yxty168 com', '2022 02 16 \xD9\x85\xD9\x81...', 'tags') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/02/16/\xD9\x85\xD9\x81...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/02/16/\xD9\x85\xD9\x81...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:04:12 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36, REMOTE_ADDR: 89.211.53.50k20f8bjf20, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:04:13 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (92.73 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/08/10/%D9%82%D8%B7%D8%B1-%D8%AA%D8%AD%D8%B0%D9%81-%D8%A7%D8%B3%D9%85-%D8%A5%D8%B3%D8%B1%D8%A7%D8%A6%D9%8A%D9%84-%D9%85%D9%86-%D9%85%D9%88%D9%82%D8%B9-%D8%AD%D8%AC%D8%B2-%D8%AA%D8%B0%D8%A7%D9%83%D8%B1/jiangnanty188.com, Stored debug messages: 2023-12-24 21:04:03 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/08/10/قطر-تحذف-اسم-إسرائيل-من-موقع-حجز-تذاكر/jiangnanty188.com 2023-12-24 21:04:03 PST (DEBUG): Processing 404 for URL: /2022/08/10/قطر-تحذف-اسم-إسرائيل-من-موقع-حجز-تذاكر/jiangnanty188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2022/08/10/قطر-تحذف-اسم-إسرائيل-من-موقع-حجز-تذاكر/jiangnanty188.com 2023-12-24 21:04:04 PST (DEBUG): No posts or pages matching slug: jiangnanty188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (101.73 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'jiangnanty188 c...', '2022 08 10 \xD9\x82\xD8\xB7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/08/10/\xD9\x82\xD8\xB7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/08/10/\xD9\x82\xD8\xB7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/08/10/%D9%81%D9%8A%D8%AF%D9%8A%D9%88-%D9%82%D8%A7%D8%B1%D8%A8-%D9%84%D8%A7%D8%AC%D8%A6%D9%8A%D9%86-%D9%8A%D9%82%D8%AA%D8%AD%D9%85-%D8%B4%D8%A7%D8%B7%D8%A6-%D8%A5%D8%B3%D8%A8%D8%A7%D9%86%D9%8A-%D9%88%D9%8A/agzr.org, Stored debug messages: 2023-12-24 21:04:24 PST (DEBUG): Processing 404 for URL: /2017/08/10/فيديو-قارب-لاجئين-يقتحم-شاطئ-إسباني-وي/agzr.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4ruce7vs32i0, REQUEST_URI: /2017/08/10/فيديو-قارب-لاجئين-يقتحم-شاطئ-إسباني-وي/agzr.org 2023-12-24 21:04:25 PST (DEBUG): No posts or pages matching slug: agzr.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (81.22 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agzr org', '2017 08 10 \xD9\x81\xD9\x8A...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/08/10/\xD9\x81\xD9\x8A...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/08/10/\xD9\x81\xD9\x8A...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:04:20 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36, REMOTE_ADDR: 176.203.191.5amchoi8lso0, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:04:21 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (85.19 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/07/24/%D8%AC%D8%AF%D9%8A%D8%AF-%D9%82%D8%B6%D9%8A%D8%A9-%D9%82%D8%AA%D9%84-%D8%B4%D9%8A%D9%85%D8%A7%D8%A1-%D8%AC%D9%85%D8%A7%D9%84-%D8%A7%D9%84%D9%86%D9%8A%D8%A7%D8%A8%D8%A9-%D8%AA%D9%83%D8%B4%D9%81/ag-baccarat.live, Stored debug messages: 2023-12-24 21:04:17 PST (DEBUG): Processing 404 for URL: /2022/07/24/جديد-قضية-قتل-شيماء-جمال-النيابة-تكشف/ag-baccarat.live | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.3gtvfitidgh0, REQUEST_URI: /2022/07/24/جديد-قضية-قتل-شيماء-جمال-النيابة-تكشف/ag-baccarat.live 2023-12-24 21:04:18 PST (DEBUG): No posts or pages matching slug: ag-baccarat.live 2023-12-24 21:05:46 PST (DEBUG): Slow query (87.53 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'ag baccarat liv...', '2022 07 24 \xD8\xAC\xD8\xAF...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/07/24/\xD8\xAC\xD8\xAF...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/07/24/\xD8\xAC\xD8\xAF...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2018/05/F3B905BA-3E9E-4033-AECF-04373ED42F66.jpeg, Stored debug messages: 2023-12-24 21:05:10 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2018/05/F3B905BA-3E9E-4033-AECF-04373ED42F66.jpeg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com), REMOTE_ADDR: 64.124.8.5l7ct3qqlp20, REQUEST_URI: /wp-content/uploads/2018/05/F3B905BA-3E9E-4033-AECF-04373ED42F66.jpeg 2023-12-24 21:05:11 PST (DEBUG): No posts or pages matching slug: F3B905BA-3E9E-4033-AECF-04373ED42F66.jpeg 2023-12-24 21:05:46 PST (DEBUG): Slow query (34.44 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'F3B905BA 3E9E 4...', 'wp content uplo...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/10/10/%D9%85%D9%88%D8%AD%D8%AF-%D8%A7%D9%84%D9%85%D9%85%D9%84%D9%83%D8%A9-%D8%A7%D9%84%D9%85%D9%84%D9%83-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D9%8A%D8%B4%D8%AA%D8%B1%D9%8A-%D9%84%D9%88%D8%AD%D8%A9-%D9%81/agzl.net, Stored debug messages: 2023-12-24 21:04:11 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /2021/10/10/موحد-المملكة-الملك-سلمان-يشتري-لوحة-ف/agzl.net 2023-12-24 21:04:11 PST (DEBUG): Processing 404 for URL: /2021/10/10/موحد-المملكة-الملك-سلمان-يشتري-لوحة-ف/agzl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 66.249.72.74r8tnveue40, REQUEST_URI: /2021/10/10/موحد-المملكة-الملك-سلمان-يشتري-لوحة-ف/agzl.net 2023-12-24 21:04:12 PST (DEBUG): No posts or pages matching slug: agzl.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (94.03 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agzl net', '2021 10 10 \xD9\x85\xD9\x88...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/10/10/\xD9\x85\xD9\x88...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/10/10/\xD9\x85\xD9\x88...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/09/24/%D9%84%D9%85%D8%A7%D8%B0%D8%A7-%D9%8A%D8%AE%D8%B4%D9%89-%D8%AD%D9%83%D8%A7%D9%85-%D8%A7%D9%84%D8%B9%D8%B1%D8%A8-%D9%85%D9%86-%D8%A7%D9%84%D9%85%D8%AB%D9%82%D9%81%D9%8A%D9%86/kokty168.net, Stored debug messages: 2023-12-24 21:05:11 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/09/24/لماذا-يخشى-حكام-العرب-من-المثقفين/kokty168.net 2023-12-24 21:05:11 PST (DEBUG): Processing 404 for URL: /2021/09/24/لماذا-يخشى-حكام-العرب-من-المثقفين/kokty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2021/09/24/لماذا-يخشى-حكام-العرب-من-المثقفين/kokty168.net 2023-12-24 21:05:11 PST (DEBUG): No posts or pages matching slug: kokty168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (34.34 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kokty168 net', '2021 09 24 \xD9\x84\xD9\x85...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/09/24/\xD9\x84\xD9\x85...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/09/24/\xD9\x84\xD9\x85...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/07/20/%D9%85%D8%B1%D9%8A%D9%85-%D8%A2%D9%84-%D8%AB%D8%A7%D9%86%D9%8A-%D8%B3%D8%A7%D8%AE%D8%B1%D8%A9-%D8%A3%D8%A8%D9%88-%D8%B8%D8%A8%D9%8A-%D8%AA%D8%AA%D9%87%D9%85-%D9%82%D8%B7%D8%B1-%D8%A8%D8%A7%D9%84/kaiyun-168.com, Stored debug messages: 2023-12-24 21:05:20 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/07/20/مريم-آل-ثاني-ساخرة-أبو-ظبي-تتهم-قطر-بال/kaiyun-168.com 2023-12-24 21:05:20 PST (DEBUG): Processing 404 for URL: /2018/07/20/مريم-آل-ثاني-ساخرة-أبو-ظبي-تتهم-قطر-بال/kaiyun-168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.55esdst4v200, REQUEST_URI: /2018/07/20/مريم-آل-ثاني-ساخرة-أبو-ظبي-تتهم-قطر-بال/kaiyun-168.com 2023-12-24 21:05:21 PST (DEBUG): No posts or pages matching slug: kaiyun-168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (24.64 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyun 168 com', '2018 07 20 \xD9\x85\xD8\xB1...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/07/20/\xD9\x85\xD8\xB1...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/07/20/\xD9\x85\xD8\xB1...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/08/10/%D8%A7%D9%84%D8%B9%D8%AA%D9%8A%D8%A8%D8%A9-%D9%81%D9%83%D8%B1-%D9%88%D8%AA%D8%AF%D8%A8%D8%B1-%D8%AB%D9%85-%D8%A7%D8%B9%D8%AA%D8%B1%D9%81-%D9%84%D9%80%D9%86%D9%8A%D9%88%D9%8A%D9%88%D8%B1%D9%83/tbtiyu188.com, Stored debug messages: 2023-12-24 21:04:44 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2017/08/10/العتيبة-فكر-وتدبر-ثم-اعترف-لـنيويورك/tbtiyu188.com 2023-12-24 21:04:44 PST (DEBUG): Processing 404 for URL: /2017/08/10/العتيبة-فكر-وتدبر-ثم-اعترف-لـنيويورك/tbtiyu188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2017/08/10/العتيبة-فكر-وتدبر-ثم-اعترف-لـنيويورك/tbtiyu188.com 2023-12-24 21:04:44 PST (DEBUG): No posts or pages matching slug: tbtiyu188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (61.32 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'tbtiyu188 com', '2017 08 10 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/08/10/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/08/10/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/11/03/%D8%A7%D9%86%D8%B3%D8%AA%D8%BA%D8%B1%D8%A7%D9%85-%D9%8A%D8%B7%D9%84%D9%82-%D8%B7%D8%B1%D9%82%D9%8B%D8%A7-%D8%AC%D8%AF%D9%8A%D8%AF%D8%A9-%D9%84%D9%84%D9%85%D8%A8%D8%AF%D8%B9%D9%8A%D9%86-%D9%84%D9%83/wanbo168.net, Stored debug messages: 2023-12-24 21:03:49 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/11/03/انستغرام-يطلق-طرقًا-جديدة-للمبدعين-لك/wanbo168.net 2023-12-24 21:03:49 PST (DEBUG): Processing 404 for URL: /2022/11/03/انستغرام-يطلق-طرقًا-جديدة-للمبدعين-لك/wanbo168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2022/11/03/انستغرام-يطلق-طرقًا-جديدة-للمبدعين-لك/wanbo168.net 2023-12-24 21:03:50 PST (DEBUG): No posts or pages matching slug: wanbo168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (116 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'wanbo168 net', '2022 11 03 \xD8\xA7\xD9\x86...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/11/03/\xD8\xA7\xD9\x86...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/11/03/\xD8\xA7\xD9\x86...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/11/17/%D8%B5%D8%AF%D9%88%D8%B1-%D8%A7%D9%84%D8%AD%D9%83%D9%85-%D8%A7%D9%84%D9%86%D9%87%D8%A7%D8%A6%D9%8A-%D9%81%D9%8A-%D8%A7%D8%AA%D9%87%D8%A7%D9%85-%D8%B1%D9%88%D8%A7%D9%86-%D8%A8%D9%86-%D8%AD%D8%B3%D9%8A/ag-zunlongkaishi.net, Stored debug messages: 2023-12-24 21:03:56 PST (DEBUG): Processing 404 for URL: /2021/11/17/صدور-الحكم-النهائي-في-اتهام-روان-بن-حسي/ag-zunlongkaishi.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.7cpf47siqss0, REQUEST_URI: /2021/11/17/صدور-الحكم-النهائي-في-اتهام-روان-بن-حسي/ag-zunlongkaishi.net 2023-12-24 21:03:57 PST (DEBUG): No posts or pages matching slug: ag-zunlongkaishi.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (108.47 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'ag zunlongkaish...', '2021 11 17 \xD8\xB5\xD8\xAF...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/11/17/\xD8\xB5\xD8\xAF...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/11/17/\xD8\xB5\xD8\xAF...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/10/29/%D8%A7%D9%86%D8%AA%D9%8A-%D9%85%D8%B9%D9%84%D9%85%D8%A9-%D8%B4%D8%A7%D9%87%D8%AF-%D8%A7%D9%84%D8%B1%D8%A7%D9%82%D8%B5%D8%A9-%D9%84%D9%88%D8%B1%D8%AF%D9%8A%D8%A7%D9%86%D8%A7-%D9%88%D9%84/kaiyuanqp168.com, Stored debug messages: 2023-12-24 21:02:30 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2020/10/29/انتي-معلمة-شاهد-الراقصة-لورديانا-ول/kaiyuanqp168.com 2023-12-24 21:02:30 PST (DEBUG): Processing 404 for URL: /2020/10/29/انتي-معلمة-شاهد-الراقصة-لورديانا-ول/kaiyuanqp168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2020/10/29/انتي-معلمة-شاهد-الراقصة-لورديانا-ول/kaiyuanqp168.com 2023-12-24 21:02:31 PST (DEBUG): No posts or pages matching slug: kaiyuanqp168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (195.08 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyuanqp168 co...', '2020 10 29 \xD8\xA7\xD9\x86...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/10/29/\xD8\xA7\xD9\x86...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/10/29/\xD8\xA7\xD9\x86...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/01/22/%D9%85%D8%B3%D8%AA%D8%B4%D8%A7%D8%B1-%D8%A7%D8%A8%D9%86-%D8%B2%D8%A7%D9%8A%D8%AF-%D9%8A%D8%BA%D8%B1%D8%AF-%D8%AE%D8%A7%D8%B1%D8%AC-%D8%A7%D9%84%D8%B3%D8%B1%D8%A8-%D9%88%D9%8A%D8%A8%D8%A7%D8%B1%D9%83/pmzr168.com, Stored debug messages: 2023-12-24 21:04:10 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2019/01/22/مستشار-ابن-زايد-يغرد-خارج-السرب-ويبارك/pmzr168.com 2023-12-24 21:04:10 PST (DEBUG): Processing 404 for URL: /2019/01/22/مستشار-ابن-زايد-يغرد-خارج-السرب-ويبارك/pmzr168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.1hvru0slocmg, REQUEST_URI: /2019/01/22/مستشار-ابن-زايد-يغرد-خارج-السرب-ويبارك/pmzr168.com 2023-12-24 21:04:11 PST (DEBUG): No posts or pages matching slug: pmzr168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (94.65 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pmzr168 com', '2019 01 22 \xD9\x85\xD8\xB3...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/01/22/\xD9\x85\xD8\xB3...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/01/22/\xD9\x85\xD8\xB3...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:05:18 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36, REMOTE_ADDR: 31.14.75.6jr526g0l480, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:05:19 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (26.75 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/02/07/%D9%85%D8%A7%D9%86%D8%B4%D8%B3%D8%AA%D8%B1-%D8%B3%D9%8A%D8%AA%D9%8A-%D9%81%D9%8A-%D8%AF%D8%A7%D8%A6%D8%B1%D8%A9-%D8%A7%D9%84%D8%A7%D8%AA%D9%87%D8%A7%D9%85%D8%A7%D8%AA-%D8%A8%D8%B3%D8%A8%D8%A8-%D8%A7/kokty168.net, Stored debug messages: 2023-12-24 21:04:11 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/02/07/مانشستر-سيتي-في-دائرة-الاتهامات-بسبب-ا/kokty168.net 2023-12-24 21:04:11 PST (DEBUG): Processing 404 for URL: /2023/02/07/مانشستر-سيتي-في-دائرة-الاتهامات-بسبب-ا/kokty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.1hvru0slocmg, REQUEST_URI: /2023/02/07/مانشستر-سيتي-في-دائرة-الاتهامات-بسبب-ا/kokty168.net 2023-12-24 21:04:12 PST (DEBUG): No posts or pages matching slug: kokty168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (94.27 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kokty168 net', '2023 02 07 \xD9\x85\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/02/07/\xD9\x85\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/02/07/\xD9\x85\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/06/24/%D9%85%D8%B5%D8%A7%D8%AF%D8%B1-%D8%AA%D9%83%D8%B4%D9%81-%D8%A3%D8%B3%D9%85%D8%A7%D8%A1-%D8%A7%D9%84%D8%A5%D8%B9%D9%84%D8%A7%D9%85%D9%8A%D9%8A%D9%86-%D8%A7%D9%84%D9%85%D8%B5%D8%B1%D9%8A%D9%8A%D9%86/shaba168.com, Stored debug messages: 2023-12-24 21:04:40 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/06/24/مصادر-تكشف-أسماء-الإعلاميين-المصريين/shaba168.com 2023-12-24 21:04:40 PST (DEBUG): Processing 404 for URL: /2021/06/24/مصادر-تكشف-أسماء-الإعلاميين-المصريين/shaba168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2021/06/24/مصادر-تكشف-أسماء-الإعلاميين-المصريين/shaba168.com 2023-12-24 21:04:41 PST (DEBUG): No posts or pages matching slug: shaba168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (65.02 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'shaba168 com', '2021 06 24 \xD9\x85\xD8\xB5...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/06/24/\xD9\x85\xD8\xB5...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/06/24/\xD9\x85\xD8\xB5...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:05:17 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36, REMOTE_ADDR: 37.41.43.4g7jki4nua80, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:05:18 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (27.96 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/10/14/%D8%A7%D9%84%D8%B4%D9%8A%D8%AE-%D8%B5%D8%A8%D8%A7%D8%AD-%D9%8A%D8%AE%D8%B4%D9%89-%D8%BA%D8%AF%D8%B1-%D8%A7%D9%84%D9%85%D8%AD%D9%85%D8%AF%D9%8A%D9%86-%D8%A7%D8%AC%D8%AA%D9%85%D8%A7%D8%B9-%D8%B9/kokty168.net, Stored debug messages: 2023-12-24 21:04:27 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/10/14/الشيخ-صباح-يخشى-غدر-المحمدين-اجتماع-ع/kokty168.net 2023-12-24 21:04:27 PST (DEBUG): Processing 404 for URL: /2018/10/14/الشيخ-صباح-يخشى-غدر-المحمدين-اجتماع-ع/kokty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.64p913h85p40, REQUEST_URI: /2018/10/14/الشيخ-صباح-يخشى-غدر-المحمدين-اجتماع-ع/kokty168.net 2023-12-24 21:04:28 PST (DEBUG): No posts or pages matching slug: kokty168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (77.96 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kokty168 net', '2018 10 14 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/10/14/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/10/14/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/12/24/%D8%B5%D9%87-%D9%8A%D8%A7-%D8%A3%D8%B1%D8%AF%D9%88%D8%BA%D8%A7%D9%86-%D8%A7%D8%A8%D9%86-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D9%8A%D8%AC%D8%A7%D9%85%D9%84-%D8%A7%D9%84%D8%A5%D9%85%D8%A7%D8%B1%D8%A7/hgty188.net, Stored debug messages: 2023-12-24 21:05:21 PST (DEBUG): Processing 404 for URL: /2017/12/24/صه-يا-أردوغان-ابن-سلمان-يجامل-الإمارا/hgty188.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.69u3s9busol0, REQUEST_URI: /2017/12/24/صه-يا-أردوغان-ابن-سلمان-يجامل-الإمارا/hgty188.net 2023-12-24 21:05:22 PST (DEBUG): No posts or pages matching slug: hgty188.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (23.57 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'hgty188 net', '2017 12 24 \xD8\xB5\xD9\x87...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/12/24/\xD8\xB5\xD9\x87...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/12/24/\xD8\xB5\xD9\x87...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/12/23/%D9%84%D8%A7%D8%B9%D8%A8%D9%88-%D8%A7%D9%84%D8%A3%D9%87%D9%84%D9%8A-%D8%A7%D9%84%D9%85%D8%B5%D8%B1%D9%8A-%D9%8A%D8%AD%D8%AA%D9%81%D9%84%D9%88%D9%86-%D8%A8%D9%83%D8%A3%D8%B3-%D8%A7%D9%84%D8%B3%D9%88/ag-zhenren.org, Stored debug messages: 2023-12-24 21:05:00 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/12/23/لاعبو-الأهلي-المصري-يحتفلون-بكأس-السو/ag-zhenren.org 2023-12-24 21:05:01 PST (DEBUG): Processing 404 for URL: /2021/12/23/لاعبو-الأهلي-المصري-يحتفلون-بكأس-السو/ag-zhenren.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.55esdst4v200, REQUEST_URI: /2021/12/23/لاعبو-الأهلي-المصري-يحتفلون-بكأس-السو/ag-zhenren.org 2023-12-24 21:05:01 PST (DEBUG): No posts or pages matching slug: ag-zhenren.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (44.4 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'ag zhenren org', '2021 12 23 \xD9\x84\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/12/23/\xD9\x84\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/12/23/\xD9\x84\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/10540407_10152318618178660_8936007325462155332_n.jpg, Stored debug messages: 2023-12-24 21:03:00 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/10540407_10152318618178660_8936007325462155332_n.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy), REMOTE_ADDR: 66.249.84.4svnogt3u090, REQUEST_URI: /wp-content/uploads/10540407_10152318618178660_8936007325462155332_n.jpg 2023-12-24 21:03:01 PST (DEBUG): No posts or pages matching slug: 10540407_10152318618178660_8936007325462155332_n.jpg 2023-12-24 21:05:46 PST (DEBUG): Slow query (165.13 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '10540407 101523...', 'wp content uplo...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/11/07/%D8%A3%D8%A8%D8%B1%D8%B2-%D8%B9%D8%B4%D8%B1-%D9%81%D8%B6%D8%A7%D8%A6%D8%AD-%D9%84%D9%84%D8%B1%D8%A6%D9%8A%D8%B3-%D8%A7%D9%84%D8%A3%D9%85%D8%B1%D9%8A%D9%83%D9%8A-%D8%A7%D9%84%D9%85%D8%B1%D8%AA%D9%82/pgdz168.net, Stored debug messages: 2023-12-24 21:04:30 PST (DEBUG): Processing 404 for URL: /2016/11/07/أبرز-عشر-فضائح-للرئيس-الأمريكي-المرتق/pgdz168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.25oi6csbhdg0, REQUEST_URI: /2016/11/07/أبرز-عشر-فضائح-للرئيس-الأمريكي-المرتق/pgdz168.net 2023-12-24 21:04:31 PST (DEBUG): No posts or pages matching slug: pgdz168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (75.07 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pgdz168 net', '2016 11 07 \xD8\xA3\xD8\xA8...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/11/07/\xD8\xA3\xD8\xA8...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/11/07/\xD8\xA3\xD8\xA8...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/01/26/%D8%AA%D8%B9%D8%B1%D9%81-%D8%B9%D9%84%D9%89-%D8%A7%D9%84%D9%81%D9%88%D8%A7%D8%A6%D8%AF-%D8%A7%D9%84%D8%B5%D8%AD%D9%8A%D8%A9-%D9%84%D8%AA%D9%86%D8%A7%D9%88%D9%84-%D8%A7%D9%84%D9%81%D8%B1%D8%A7%D9%88/leyutiyu.co, Stored debug messages: 2023-12-24 21:04:32 PST (DEBUG): Processing 404 for URL: /2022/01/26/تعرف-على-الفوائد-الصحية-لتناول-الفراو/leyutiyu.co | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.74r8tnveue40, REQUEST_URI: /2022/01/26/تعرف-على-الفوائد-الصحية-لتناول-الفراو/leyutiyu.co 2023-12-24 21:04:33 PST (DEBUG): No posts or pages matching slug: leyutiyu.co 2023-12-24 21:05:46 PST (DEBUG): Slow query (72.88 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'leyutiyu co', '2022 01 26 \xD8\xAA\xD8\xB9...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/01/26/\xD8\xAA\xD8\xB9...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/01/26/\xD8\xAA\xD8\xB9...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tag/%D9%85%D9%88%D8%A7%D9%86%D8%A6/kaifayl.net, Stored debug messages: 2023-12-24 21:04:01 PST (DEBUG): Processing 404 for URL: /tag/موانئ/kaifayl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.64p913h85p40, REQUEST_URI: /tag/موانئ/kaifayl.net 2023-12-24 21:04:02 PST (DEBUG): No posts or pages matching slug: kaifayl.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (104 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaifayl net', 'tag \xD9\x85\xD9\x88\xD8\xA7\xD9\x86\xD8\xA6 ...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tag/\xD9\x85\xD9\x88\xD8\xA7\xD9\x86\xD8\xA6/...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tag/\xD9\x85\xD9\x88\xD8\xA7\xD9\x86\xD8\xA6/...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/06/29/%D8%AA%D9%82%D8%A7%D8%B1%D8%A8-%D8%AD%D9%85%D8%A7%D8%B3-%D9%85%D8%B9-%D9%86%D8%B8%D8%A7%D9%85-%D8%A7%D9%84%D8%A3%D8%B3%D8%AF-%D8%A7%D9%84%D8%A3%D8%B3%D8%A8%D8%A7%D8%A8-%D9%88%D8%A7%D9%84%D8%AF%D9%88/aiyouxi.one, Stored debug messages: 2023-12-24 21:04:03 PST (DEBUG): Processing 404 for URL: /2022/06/29/تقارب-حماس-مع-نظام-الأسد-الأسباب-والدو/aiyouxi.one | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.679mbr07le50, REQUEST_URI: /2022/06/29/تقارب-حماس-مع-نظام-الأسد-الأسباب-والدو/aiyouxi.one 2023-12-24 21:04:04 PST (DEBUG): No posts or pages matching slug: aiyouxi.one 2023-12-24 21:05:46 PST (DEBUG): Slow query (101.87 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'aiyouxi one', '2022 06 29 \xD8\xAA\xD9\x82...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/06/29/\xD8\xAA\xD9\x82...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/06/29/\xD8\xAA\xD9\x82...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tag/%D9%85%D8%B4%D9%87%D9%88%D8%B1-%D9%83%D9%88%D9%8A%D8%AA%D9%8A/, Stored debug messages: 2023-12-24 21:04:17 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /tag/مشهور-كويتي/ 2023-12-24 21:04:17 PST (DEBUG): Processing 404 for URL: /tag/مشهور-كويتي/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 213.180.203.6hui8q816mh0, REQUEST_URI: /tag/مشهور-كويتي/ 2023-12-24 21:04:18 PST (DEBUG): No posts or pages matching slug: مشهور-كويتي 2023-12-24 21:05:46 PST (DEBUG): Slow query (87.59 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD9\x85\xD8\xB4\xD9\x87\xD9\x88\xD8\xB1 \xD9\x83\xD9\x88...', 'tag \xD9\x85\xD8\xB4\xD9\x87\xD9\x88\xD8\xB1 ...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tag/\xD9\x85\xD8\xB4\xD9\x87\xD9\x88\xD8\xB1-...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tag/\xD9\x85\xD8\xB4\xD9\x87\xD9\x88\xD8\xB1-...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/09/07/%D8%B3%D9%85%D8%B9%D8%AA%D9%87%D8%A7-%D9%82%D8%A8%D9%84-15-%D8%B9%D8%A7%D9%85%D8%A7-%D8%B4%D8%A7%D9%87%D8%AF-%D8%A3%D9%85%D9%8A%D8%B1-%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D9%85%D9%87%D8%AF%D8%AF%D8%A7/kaiyun-168.com, Stored debug messages: 2023-12-24 21:03:54 PST (DEBUG): Processing 404 for URL: /2017/09/07/سمعتها-قبل-15-عاما-شاهد-أمير-سعودي-مهددا/kaiyun-168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.74r8tnveue40, REQUEST_URI: /2017/09/07/سمعتها-قبل-15-عاما-شاهد-أمير-سعودي-مهددا/kaiyun-168.com 2023-12-24 21:03:55 PST (DEBUG): No posts or pages matching slug: kaiyun-168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (110.43 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyun 168 com', '2017 09 07 \xD8\xB3\xD9\x85...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/09/07/\xD8\xB3\xD9\x85...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/09/07/\xD8\xB3\xD9\x85...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2020/07/%D8%A7%D9%84%D8%B3%D9%8A%D8%B3%D9%8A-%D9%88%D8%AD%D9%81%D8%AA%D8%B1-%D9%88%D8%B5%D8%A7%D9%84%D8%AD.jpg, Stored debug messages: 2023-12-24 21:04:09 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2020/07/السيسي-وحفتر-وصالح.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy), REMOTE_ADDR: 74.125.210.4f2ji5vjna30, REQUEST_URI: /wp-content/uploads/2020/07/السيسي-وحفتر-وصالح.jpg 2023-12-24 21:04:10 PST (DEBUG): No posts or pages matching slug: السيسي-وحفتر-وصالح.jpg 2023-12-24 21:05:46 PST (DEBUG): Slow query (96.02 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD8\xA7\xD9\x84\xD8\xB3\xD9\x8A\xD8\xB3\xD9\x8A \xD9\x88...', 'wp content uplo...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/06/09/%D8%A3%D9%86%D8%A8%D8%A7%D8%A1-%D9%85%D8%AA%D8%AF%D8%A7%D9%88%D9%84%D8%A9-%D8%A5%D8%B9%D8%B5%D8%A7%D8%B1-%D9%83%D8%A8%D9%8A%D8%B1-%D9%82%D8%A7%D8%AF%D9%85-%D8%A5%D9%84%D9%89-%D8%B9%D9%8F%D9%85/agbjl.org, Stored debug messages: 2023-12-24 21:05:31 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/06/09/أنباء-متداولة-إعصار-كبير-قادم-إلى-عُم/agbjl.org 2023-12-24 21:05:31 PST (DEBUG): Processing 404 for URL: /2018/06/09/أنباء-متداولة-إعصار-كبير-قادم-إلى-عُم/agbjl.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.55esdst4v200, REQUEST_URI: /2018/06/09/أنباء-متداولة-إعصار-كبير-قادم-إلى-عُم/agbjl.org 2023-12-24 21:05:32 PST (DEBUG): No posts or pages matching slug: agbjl.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (13.78 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agbjl org', '2018 06 09 \xD8\xA3\xD9\x86...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/06/09/\xD8\xA3\xD9\x86...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/06/09/\xD8\xA3\xD9\x86...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/07/18/%D8%B3%D8%A3%D9%84%D9%88%D8%A7-%D8%A3%D9%8A%D8%AF%D9%8A-%D9%83%D9%88%D9%87%D9%8A%D9%86-%D8%B9%D9%86-%D9%85%D9%88%D8%B9%D8%AF-%D9%81%D8%AA%D8%AD-%D8%A7%D9%84%D8%B3%D9%81%D8%A7%D8%B1%D8%A9-%D8%A7%D9%84/tbtiyu188.org, Stored debug messages: 2023-12-24 21:02:39 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/07/18/سألوا-أيدي-كوهين-عن-موعد-فتح-السفارة-ال/tbtiyu188.org 2023-12-24 21:02:39 PST (DEBUG): Processing 404 for URL: /2018/07/18/سألوا-أيدي-كوهين-عن-موعد-فتح-السفارة-ال/tbtiyu188.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.1nkt4tg274cg, REQUEST_URI: /2018/07/18/سألوا-أيدي-كوهين-عن-موعد-فتح-السفارة-ال/tbtiyu188.org 2023-12-24 21:02:40 PST (DEBUG): No posts or pages matching slug: tbtiyu188.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (185.51 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'tbtiyu188 org', '2018 07 18 \xD8\xB3\xD8\xA3...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/07/18/\xD8\xB3\xD8\xA3...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/07/18/\xD8\xB3\xD8\xA3...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/11/16/%D9%87%D9%83%D8%B0%D8%A7-%D8%AE%D9%8E%D8%B7%D9%8E%D8%A8%D9%8E-%D8%A7%D9%84%D9%81%D9%86%D8%A7%D9%86-%D8%B1%D9%8A%D9%83%D9%8A-%D9%85%D8%A7%D8%B1%D8%AA%D9%86-%D8%AD%D8%A8%D9%8A%D8%A8%D9%87-%D8%A7%D9%84/leyutiy.net, Stored debug messages: 2023-12-24 21:04:20 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/11/16/هكذا-خَطَبَ-الفنان-ريكي-مارتن-حبيبه-ال/leyutiy.net 2023-12-24 21:04:20 PST (DEBUG): Processing 404 for URL: /2016/11/16/هكذا-خَطَبَ-الفنان-ريكي-مارتن-حبيبه-ال/leyutiy.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2016/11/16/هكذا-خَطَبَ-الفنان-ريكي-مارتن-حبيبه-ال/leyutiy.net 2023-12-24 21:04:20 PST (DEBUG): No posts or pages matching slug: leyutiy.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (85.35 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'leyutiy net', '2016 11 16 \xD9\x87\xD9\x83...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/11/16/\xD9\x87\xD9\x83...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/11/16/\xD9\x87\xD9\x83...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/02/20/%D9%84%D8%AD%D8%B8%D8%A9-%D9%88%D9%82%D9%88%D8%B9-%D8%B2%D9%84%D8%B2%D8%A7%D9%84-%D8%AA%D8%B1%D9%83%D9%8A%D8%A7-%D8%A7%D9%84%D8%AC%D8%AF%D9%8A%D8%AF-%D8%B2%D9%84%D8%B2%D8%A7%D9%84%D8%A7%D9%86-%D8%B6/kaifayl.net, Stored debug messages: 2023-12-24 21:03:49 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/02/20/لحظة-وقوع-زلزال-تركيا-الجديد-زلزالان-ض/kaifayl.net 2023-12-24 21:03:49 PST (DEBUG): Processing 404 for URL: /2023/02/20/لحظة-وقوع-زلزال-تركيا-الجديد-زلزالان-ض/kaifayl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2023/02/20/لحظة-وقوع-زلزال-تركيا-الجديد-زلزالان-ض/kaifayl.net 2023-12-24 21:03:50 PST (DEBUG): No posts or pages matching slug: kaifayl.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (115.78 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaifayl net', '2023 02 20 \xD9\x84\xD8\xAD...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/02/20/\xD9\x84\xD8\xAD...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/02/20/\xD9\x84\xD8\xAD...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/12/04/%D8%AA%D8%B4%D9%83%D9%8A%D9%84%D8%A9-%D8%A7%D9%84%D9%85%D9%86%D8%AA%D8%AE%D8%A8-%D8%A7%D9%84%D9%85%D8%BA%D8%B1%D8%A8%D9%8A-%D8%B6%D8%AF-%D8%A5%D8%B3%D8%A8%D8%A7%D9%86%D9%8A%D8%A7-%D9%81%D9%8A-%D9%85/imty.org, Stored debug messages: 2023-12-24 21:04:50 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/12/04/تشكيلة-المنتخب-المغربي-ضد-إسبانيا-في-م/imty.org 2023-12-24 21:04:50 PST (DEBUG): Processing 404 for URL: /2022/12/04/تشكيلة-المنتخب-المغربي-ضد-إسبانيا-في-م/imty.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2022/12/04/تشكيلة-المنتخب-المغربي-ضد-إسبانيا-في-م/imty.org 2023-12-24 21:04:51 PST (DEBUG): No posts or pages matching slug: imty.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (54.76 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'imty org', '2022 12 04 \xD8\xAA\xD8\xB4...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/12/04/\xD8\xAA\xD8\xB4...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/12/04/\xD8\xAA\xD8\xB4...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/, Requested URL: /wp-content/cache/minify/4386b.css, Stored debug messages: 2023-12-24 21:05:29 PST (DEBUG): Processing 404 for URL: /wp-content/cache/minify/4386b.css | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 13; SAMSUNG SM-A037F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/23.0 Chrome/115.0.0.0 Mobile Safari/537.36, REMOTE_ADDR: 37.40.220.55iviga0nm00, REQUEST_URI: /wp-content/cache/minify/4386b.css 2023-12-24 21:05:30 PST (DEBUG): No posts or pages matching slug: 4386b.css 2023-12-24 21:05:46 PST (DEBUG): Slow query (15.71 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '4386b css', 'wp content cach...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/cach...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/cach...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/09/30/%D8%AA%D8%B3%D8%B1%D8%A8-%D8%AE%D8%B7-%D8%A3%D9%86%D8%A7%D8%A8%D9%8A%D8%A8-%D9%86%D9%88%D8%B1%D8%AF-%D8%B3%D8%AA%D8%B1%D9%8A%D9%85-%D9%8A%D9%8F%D9%87%D8%AF%D8%AF-%D8%AD%D9%8A%D8%A7%D8%A9-%D9%88/fbty168.net, Stored debug messages: 2023-12-24 21:02:22 PST (DEBUG): Processing 404 for URL: /2022/09/30/تسرب-خط-أنابيب-نورد-ستريم-يُهدد-حياة-و/fbty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4f2ji5vjna30, REQUEST_URI: /2022/09/30/تسرب-خط-أنابيب-نورد-ستريم-يُهدد-حياة-و/fbty168.net 2023-12-24 21:02:23 PST (DEBUG): No posts or pages matching slug: fbty168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (202.88 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'fbty168 net', '2022 09 30 \xD8\xAA\xD8\xB3...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/09/30/\xD8\xAA\xD8\xB3...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/09/30/\xD8\xAA\xD8\xB3...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/03/19/%D8%AA%D9%87%D9%85%D8%AA%D9%87-%D8%A7%D9%84%D8%AA%D8%B6%D8%A7%D9%85%D9%86-%D9%85%D8%B9-%D9%88%D8%A7%D9%84%D8%AF%D9%87-%D8%A7%D9%84%D9%85%D8%B9%D8%AA%D9%82%D9%84-%D8%A7%D9%84%D9%86%D9%8A%D8%A7/leyutiyu.co, Stored debug messages: 2023-12-24 21:02:22 PST (DEBUG): Processing 404 for URL: /2017/03/19/تهمته-التضامن-مع-والده-المعتقل-النيا/leyutiyu.co | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.64p913h85p40, REQUEST_URI: /2017/03/19/تهمته-التضامن-مع-والده-المعتقل-النيا/leyutiyu.co 2023-12-24 21:02:22 PST (DEBUG): No posts or pages matching slug: leyutiyu.co 2023-12-24 21:05:46 PST (DEBUG): Slow query (203.59 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'leyutiyu co', '2017 03 19 \xD8\xAA\xD9\x87...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/03/19/\xD8\xAA\xD9\x87...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/03/19/\xD8\xAA\xD9\x87...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/04/03/%D8%B4%D8%A7%D9%87%D8%AF-%D9%85%D8%A7-%D8%AD%D9%82%D9%8A%D9%82%D8%A9-%D9%88%D9%81%D8%A7%D8%A9-%D8%B3%D9%8A%D8%AF%D8%A9-%D8%A7%D9%84%D8%B4%D8%A7%D8%B4%D8%A9-%D8%A7%D9%84%D8%AE%D9%84%D9%8A%D8%AC/kaiyun-168.com, Stored debug messages: 2023-12-24 21:04:40 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/04/03/شاهد-ما-حقيقة-وفاة-سيدة-الشاشة-الخليج/kaiyun-168.com 2023-12-24 21:04:40 PST (DEBUG): Processing 404 for URL: /2018/04/03/شاهد-ما-حقيقة-وفاة-سيدة-الشاشة-الخليج/kaiyun-168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2018/04/03/شاهد-ما-حقيقة-وفاة-سيدة-الشاشة-الخليج/kaiyun-168.com 2023-12-24 21:04:41 PST (DEBUG): No posts or pages matching slug: kaiyun-168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (65.02 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyun 168 com', '2018 04 03 \xD8\xB4\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/04/03/\xD8\xB4\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/04/03/\xD8\xB4\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/06/15/%D8%A7%D9%84%D8%AA%D8%B7%D8%A8%D9%8A%D8%B9-%D9%85%D8%B9-%D8%A5%D8%B3%D8%B1%D8%A7%D8%A6%D9%8A%D9%84-%D9%87%D9%88-%D8%AC%D8%A7%D8%A6%D8%B2%D8%A9-%D8%A8%D8%A7%D9%8A%D8%AF%D9%86-%D9%84%D9%84%D9%82%D8%A7/pmtiyu.org, Stored debug messages: 2023-12-24 21:04:45 PST (DEBUG): Processing 404 for URL: /2022/06/15/التطبيع-مع-إسرائيل-هو-جائزة-بايدن-للقا/pmtiyu.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.679mbr07le50, REQUEST_URI: /2022/06/15/التطبيع-مع-إسرائيل-هو-جائزة-بايدن-للقا/pmtiyu.org 2023-12-24 21:04:46 PST (DEBUG): No posts or pages matching slug: pmtiyu.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (59.67 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pmtiyu org', '2022 06 15 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/06/15/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/06/15/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:02:42 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36, REMOTE_ADDR: 2001:8003:5d00:5qbds8tippv0, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:02:43 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (183.06 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/07/29/%D9%81%D9%8A%D8%AF%D9%8A%D9%88-%D8%A3%D9%83%D8%AB%D8%B1-10-%D8%B1%D8%AC%D8%A7%D9%84-%D8%A7%D9%86%D8%AC%D8%A7%D8%A8%D8%A7%D9%8B-%D9%81%D9%8A-%D8%A7%D9%84%D8%AA%D8%A7%D8%B1%D9%8A%D8%AE-%D8%A7/j9jyh.net, Stored debug messages: 2023-12-24 21:05:34 PST (DEBUG): Processing 404 for URL: /2017/07/29/فيديو-أكثر-10-رجال-انجاباً-في-التاريخ-ا/j9jyh.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4ruce7vs32i0, REQUEST_URI: /2017/07/29/فيديو-أكثر-10-رجال-انجاباً-في-التاريخ-ا/j9jyh.net 2023-12-24 21:05:35 PST (DEBUG): No posts or pages matching slug: j9jyh.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (10.68 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'j9jyh net', '2017 07 29 \xD9\x81\xD9\x8A...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/07/29/\xD9\x81\xD9\x8A...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/07/29/\xD9\x81\xD9\x8A...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/07/27/%D9%86%D8%A7%D8%AF%D9%8A%D9%86-%D8%A7%D9%84%D8%B1%D8%A7%D8%B3%D9%8A-%D8%AA%D9%86%D8%B4%D8%B1-%D8%B5%D9%88%D8%B1%D8%AA%D9%87%D8%A7-%D8%A8%D9%80%D8%A7%D9%84%D8%A8%D9%83%D9%8A%D9%86%D9%8A-%D9%88/leyutiy.net, Stored debug messages: 2023-12-24 21:03:19 PST (DEBUG): Processing 404 for URL: /2021/07/27/نادين-الراسي-تنشر-صورتها-بـالبكيني-و/leyutiy.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4ruce7vs32i0, REQUEST_URI: /2021/07/27/نادين-الراسي-تنشر-صورتها-بـالبكيني-و/leyutiy.net 2023-12-24 21:03:20 PST (DEBUG): No posts or pages matching slug: leyutiy.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (145.59 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'leyutiy net', '2021 07 27 \xD9\x86\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/07/27/\xD9\x86\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/07/27/\xD9\x86\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/09/16/%D8%B4%D8%A7%D9%87%D8%AF-%D9%85%D8%A7%D8%B0%D8%A7-%D9%82%D8%A7%D9%84%D8%AA-%D8%A7%D9%84%D9%81%D9%84%D8%B3%D8%B7%D9%8A%D9%86%D9%8A%D8%A9-%D8%A5%D8%B3%D8%B1%D8%A7%D8%A1-%D8%BA%D8%B1%D9%8A%D8%A8/agbjl.org, Stored debug messages: 2023-12-24 21:02:59 PST (DEBUG): Processing 404 for URL: /2019/09/16/شاهد-ماذا-قالت-الفلسطينية-إسراء-غريب/agbjl.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.7cpf47siqss0, REQUEST_URI: /2019/09/16/شاهد-ماذا-قالت-الفلسطينية-إسراء-غريب/agbjl.org 2023-12-24 21:03:00 PST (DEBUG): No posts or pages matching slug: agbjl.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (165.92 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agbjl org', '2019 09 16 \xD8\xB4\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/09/16/\xD8\xB4\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/09/16/\xD8\xB4\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/04/04/%D8%A7%D9%84%D9%84%D9%82%D8%B7%D8%A7%D8%AA-%D8%A7%D9%84%D8%A3%D9%88%D9%84%D9%89-%D9%84%D8%AD%D8%A7%D8%AF%D8%AB-%D9%82%D8%B7%D8%A7%D8%B1-%D8%B1%D9%83%D8%A7%D8%A8-%D9%87%D9%88%D9%84%D9%86%D8%AF%D8%A7/pgdz168.com, Stored debug messages: 2023-12-24 21:05:07 PST (DEBUG): Processing 404 for URL: /2023/04/04/اللقطات-الأولى-لحادث-قطار-ركاب-هولندا/pgdz168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.v1ouqr6cggc0, REQUEST_URI: /2023/04/04/اللقطات-الأولى-لحادث-قطار-ركاب-هولندا/pgdz168.com 2023-12-24 21:05:08 PST (DEBUG): No posts or pages matching slug: pgdz168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (37.81 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pgdz168 com', '2023 04 04 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/04/04/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/04/04/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/08/11/%D8%A5%D9%86%D8%B3%D8%A7%D9%8A%D8%AF-%D8%A3%D8%B1%D8%A7%D8%A8%D9%8A%D8%A7-%D8%B3%D9%84%D8%B7%D9%86%D8%A9-%D8%B9%D9%85%D8%A7%D9%86-%D8%AA%D8%B4%D9%82-%D8%B7%D8%B1%D9%8A%D9%82%D8%A7/imty168.com, Stored debug messages: 2023-12-24 21:04:14 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/08/11/إنسايد-أرابيا-سلطنة-عمان-تشق-طريقا/imty168.com 2023-12-24 21:04:14 PST (DEBUG): Processing 404 for URL: /2021/08/11/إنسايد-أرابيا-سلطنة-عمان-تشق-طريقا/imty168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2021/08/11/إنسايد-أرابيا-سلطنة-عمان-تشق-طريقا/imty168.com 2023-12-24 21:04:15 PST (DEBUG): No posts or pages matching slug: imty168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (90.62 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'imty168 com', '2021 08 11 \xD8\xA5\xD9\x86...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/08/11/\xD8\xA5\xD9\x86...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/08/11/\xD8\xA5\xD9\x86...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:05:05 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 OPR/105.0.0.0, REMOTE_ADDR: 2001:67c:2660:15ma12obqq68, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:05:06 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (40.18 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/11/01/%D8%B4%D8%A7%D9%87%D8%AF-%D8%A7%D9%84%D8%B9%D8%AC%D8%A8-%D8%A7%D9%84%D8%B9%D8%AC%D8%A7%D8%A8-%D9%81%D9%8A-%D8%A3%D8%B2%D9%85%D9%8A%D8%B1-%D8%A7%D9%84%D8%AA%D8%B1%D9%83%D9%8A%D8%A9-%D8%A8%D8%B9/wanbo168.net, Stored debug messages: 2023-12-24 21:04:31 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2020/11/01/شاهد-العجب-العجاب-في-أزمير-التركية-بع/wanbo168.net 2023-12-24 21:04:32 PST (DEBUG): Processing 404 for URL: /2020/11/01/شاهد-العجب-العجاب-في-أزمير-التركية-بع/wanbo168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2020/11/01/شاهد-العجب-العجاب-في-أزمير-التركية-بع/wanbo168.net 2023-12-24 21:04:32 PST (DEBUG): No posts or pages matching slug: wanbo168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (73.45 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'wanbo168 net', '2020 11 01 \xD8\xB4\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/11/01/\xD8\xB4\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/11/01/\xD8\xB4\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/11/14/%D8%AA%D9%88%D9%82%D8%B9%D8%A7%D8%AA-%D8%B5%D8%A7%D9%85%D9%88%D9%8A%D9%84-%D8%A5%D9%8A%D8%AA%D9%88-%D8%AA%D8%AB%D9%8A%D8%B1-%D8%A7%D9%84%D8%AC%D8%AF%D9%84-%D8%A8%D8%B4%D8%A3%D9%86-%D8%A7%D9%84%D9%81/agbjl168.com, Stored debug messages: 2023-12-24 21:02:43 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/11/14/توقعات-صامويل-إيتو-تثير-الجدل-بشأن-الف/agbjl168.com 2023-12-24 21:02:43 PST (DEBUG): Processing 404 for URL: /2022/11/14/توقعات-صامويل-إيتو-تثير-الجدل-بشأن-الف/agbjl168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2022/11/14/توقعات-صامويل-إيتو-تثير-الجدل-بشأن-الف/agbjl168.com 2023-12-24 21:02:43 PST (DEBUG): No posts or pages matching slug: agbjl168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (182.29 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agbjl168 com', '2022 11 14 \xD8\xAA\xD9\x88...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/11/14/\xD8\xAA\xD9\x88...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/11/14/\xD8\xAA\xD9\x88...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/04/04/%D9%81%D9%8A%D8%AF%D9%8A%D9%88-%D8%B9%D8%B1%D9%88%D8%B3-%D9%85%D8%B5%D8%B1%D9%8A%D8%A9-%D8%AA%D8%B5%D8%A7%D8%A8-%D8%A8%D9%86%D9%88%D8%A8%D8%A9-%D9%87%D8%B3%D8%AA%D9%8A%D8%B1%D9%8A%D8%A9-%D8%A8%D8%B3/kokty168.com, Stored debug messages: 2023-12-24 21:05:02 PST (DEBUG): Processing 404 for URL: /2016/04/04/فيديو-عروس-مصرية-تصاب-بنوبة-هستيرية-بس/kokty168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.679mbr07le50, REQUEST_URI: /2016/04/04/فيديو-عروس-مصرية-تصاب-بنوبة-هستيرية-بس/kokty168.com 2023-12-24 21:05:03 PST (DEBUG): No posts or pages matching slug: kokty168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (42.55 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kokty168 com', '2016 04 04 \xD9\x81\xD9\x8A...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/04/04/\xD9\x81\xD9\x8A...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/04/04/\xD9\x81\xD9\x8A...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:03:42 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36, REMOTE_ADDR: 213.204.116.67s4i9vv03t0, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:03:43 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (122.52 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/09/16/%D9%83%D9%88%D8%A8-%D9%85%D9%86-%D8%A7%D9%84%D8%AD%D9%84%D9%8A%D8%A8-%D9%8A%D9%88%D9%85%D9%8A%D9%8E%D9%8E%D8%A7-%D9%82%D8%AF-%D9%8A%D9%82%D9%8A-%D9%85%D9%86-%D9%85%D8%B1%D8%B6-%D8%A7%D9%84%D8%B3%D9%83/kokty168.com, Stored debug messages: 2023-12-24 21:03:39 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/09/16/كوب-من-الحليب-يوميََا-قد-يقي-من-مرض-السك/kokty168.com 2023-12-24 21:03:39 PST (DEBUG): Processing 404 for URL: /2022/09/16/كوب-من-الحليب-يوميََا-قد-يقي-من-مرض-السك/kokty168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.2eecmeqd33q0, REQUEST_URI: /2022/09/16/كوب-من-الحليب-يوميََا-قد-يقي-من-مرض-السك/kokty168.com 2023-12-24 21:03:40 PST (DEBUG): No posts or pages matching slug: kokty168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (125.6 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kokty168 com', '2022 09 16 \xD9\x83\xD9\x88...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/09/16/\xD9\x83\xD9\x88...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/09/16/\xD9\x83\xD9\x88...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/01/31/%D8%A7%D9%84%D8%A8%D8%B1%D9%84%D9%85%D8%A7%D9%86-%D8%A7%D9%84%D8%A3%D9%88%D8%B1%D9%88%D8%A8%D9%8A-%D9%8A%D8%B5%D8%AF%D8%B1-%D9%82%D8%B1%D8%A7%D8%B1%D9%87-%D8%A8%D8%A7%D9%84%D8%A5%D8%AC%D9%85%D8%A7/bdtiyu168.com, Stored debug messages: 2023-12-24 21:04:35 PST (DEBUG): Processing 404 for URL: /2023/01/31/البرلمان-الأوروبي-يصدر-قراره-بالإجما/bdtiyu168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.352auk7meal0, REQUEST_URI: /2023/01/31/البرلمان-الأوروبي-يصدر-قراره-بالإجما/bdtiyu168.com 2023-12-24 21:04:35 PST (DEBUG): No posts or pages matching slug: bdtiyu168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (70.04 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'bdtiyu168 com', '2023 01 31 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/01/31/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/01/31/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/10/04/%D9%87%D8%A2%D8%B1%D8%AA%D8%B3-%D8%AA%D9%86%D8%AA%D9%82%D8%AF-%D8%A3%D9%8A%D9%85%D9%86-%D8%B9%D9%88%D8%AF%D8%A9-%D8%AD%D8%B6%D8%B1-%D8%AC%D9%86%D8%A7%D8%B2%D8%A9-%D9%86%D8%A7%D9%87%D8%B6-%D8%AD%D8%AA/wanbo168.net, Stored debug messages: 2023-12-24 21:02:26 PST (DEBUG): Processing 404 for URL: /2016/10/04/هآرتس-تنتقد-أيمن-عودة-حضر-جنازة-ناهض-حت/wanbo168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.25oi6csbhdg0, REQUEST_URI: /2016/10/04/هآرتس-تنتقد-أيمن-عودة-حضر-جنازة-ناهض-حت/wanbo168.net 2023-12-24 21:02:27 PST (DEBUG): No posts or pages matching slug: wanbo168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (198.59 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'wanbo168 net', '2016 10 04 \xD9\x87\xD8\xA2...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/10/04/\xD9\x87\xD8\xA2...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/10/04/\xD9\x87\xD8\xA2...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/01/09/%D9%87%D8%AA%D9%85%D9%88%D8%AA%D9%8A-%D8%A8%D9%8A%D9%86-%D8%A5%D9%8A%D8%AF%D9%8A-%D8%A3%D8%B1%D8%AF%D9%86%D9%8A%D8%A9-%D8%AA%D8%B5%D8%B1%D8%AE-%D8%A8%D8%B4%D9%83%D9%84-%D9%87%D8%B3%D8%AA%D9%8A/kaifayl.net, Stored debug messages: 2023-12-24 21:05:32 PST (DEBUG): Processing 404 for URL: /2023/01/09/هتموتي-بين-إيدي-أردنية-تصرخ-بشكل-هستي/kaifayl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.7cpf47siqss0, REQUEST_URI: /2023/01/09/هتموتي-بين-إيدي-أردنية-تصرخ-بشكل-هستي/kaifayl.net 2023-12-24 21:05:32 PST (DEBUG): No posts or pages matching slug: kaifayl.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (13.43 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaifayl net', '2023 01 09 \xD9\x87\xD8\xAA...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/01/09/\xD9\x87\xD8\xAA...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/01/09/\xD9\x87\xD8\xAA...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/11/04/%D8%AE%D8%A7%D9%84%D8%AF-%D8%A3%D8%A8%D9%88-%D8%A7%D9%84%D9%86%D8%AC%D8%A7-%D8%A7%D9%84%D8%B0%D9%8A-%D9%82%D8%A7%D9%84-%D8%A7%D9%84%D9%85%D8%AB%D9%84%D9%8A%D8%A9-%D8%A7%D9%84%D8%AC%D9%86%D8%B3%D9%8A/leyutiyu.co, Stored debug messages: 2023-12-24 21:04:40 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2019/11/04/خالد-أبو-النجا-الذي-قال-المثلية-الجنسي/leyutiyu.co 2023-12-24 21:04:40 PST (DEBUG): Processing 404 for URL: /2019/11/04/خالد-أبو-النجا-الذي-قال-المثلية-الجنسي/leyutiyu.co | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2019/11/04/خالد-أبو-النجا-الذي-قال-المثلية-الجنسي/leyutiyu.co 2023-12-24 21:04:40 PST (DEBUG): No posts or pages matching slug: leyutiyu.co 2023-12-24 21:05:46 PST (DEBUG): Slow query (65.38 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'leyutiyu co', '2019 11 04 \xD8\xAE\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/11/04/\xD8\xAE\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/11/04/\xD8\xAE\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/01/13/%D8%B4%D8%A7%D9%87%D8%AF-%D8%AD%D8%A7%D9%85%D9%84-%D8%A7%D9%84%D9%84%D9%82%D8%A8-%D9%88%D9%85%D8%AA%D8%B5%D8%AF%D8%B1-%D8%A7%D9%84%D8%AF%D9%88%D8%B1%D9%8A-%D8%A7%D9%84%D8%AA%D8%B1%D8%AC%D9%8A/fbty168.net, Stored debug messages: 2023-12-24 21:03:50 PST (DEBUG): Processing 404 for URL: /2021/01/13/شاهد-حامل-اللقب-ومتصدر-الدوري-الترجي/fbty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.621baderv9f0, REQUEST_URI: /2021/01/13/شاهد-حامل-اللقب-ومتصدر-الدوري-الترجي/fbty168.net 2023-12-24 21:03:51 PST (DEBUG): No posts or pages matching slug: fbty168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (115.22 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'fbty168 net', '2021 01 13 \xD8\xB4\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/01/13/\xD8\xB4\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/01/13/\xD8\xB4\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/07/26/%D8%AC%D8%B1%D9%8A%D9%85%D8%A9-%D9%82%D8%AA%D9%84-%D8%AA%D9%87%D8%B2-%D8%A5%D8%B3%D8%B1%D8%A7%D8%A6%D9%8A%D9%84-%D8%A3%D8%A8-%D9%8A%D9%82%D8%AA%D9%84-%D8%A7%D8%A8%D9%86%D8%AA%D9%87-%D8%AB%D9%85/jiangnantiyu.live, Stored debug messages: 2023-12-24 21:03:01 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /2022/07/26/جريمة-قتل-تهز-إسرائيل-أب-يقتل-ابنته-ثم/jiangnantiyu.live 2023-12-24 21:03:01 PST (DEBUG): Processing 404 for URL: /2022/07/26/جريمة-قتل-تهز-إسرائيل-أب-يقتل-ابنته-ثم/jiangnantiyu.live | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 87.250.224.18rkm7ileei8, REQUEST_URI: /2022/07/26/جريمة-قتل-تهز-إسرائيل-أب-يقتل-ابنته-ثم/jiangnantiyu.live 2023-12-24 21:03:02 PST (DEBUG): No posts or pages matching slug: jiangnantiyu.live 2023-12-24 21:05:46 PST (DEBUG): Slow query (164.2 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'jiangnantiyu li...', '2022 07 26 \xD8\xAC\xD8\xB1...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/07/26/\xD8\xAC\xD8\xB1...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/07/26/\xD8\xAC\xD8\xB1...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:05:35 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0, REMOTE_ADDR: 5.21.27.1m6phog5rn5o, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:05:36 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (9.38 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/06/16/%D8%AA%D8%B1%D9%83%D9%8A-%D8%A2%D9%84-%D8%A7%D9%84%D8%B4%D9%8A%D8%AE-%D8%A3%D9%85%D8%B1-%D8%A8%D8%AD%D8%A8%D8%B3-%D8%A7%D9%84%D9%84%D8%A7%D8%B9%D8%A8%D9%8A%D9%86-%D9%81%D9%8A-%D8%BA%D8%B1%D9%81%D8%A9/kaiyun.work, Stored debug messages: 2023-12-24 21:04:12 PST (DEBUG): Processing 404 for URL: /2018/06/16/تركي-آل-الشيخ-أمر-بحبس-اللاعبين-في-غرفة/kaiyun.work | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html), REMOTE_ADDR: 85.208.96.39ln0u21vnv0, REQUEST_URI: /2018/06/16/تركي-آل-الشيخ-أمر-بحبس-اللاعبين-في-غرفة/kaiyun.work 2023-12-24 21:04:13 PST (DEBUG): No posts or pages matching slug: kaiyun.work 2023-12-24 21:05:46 PST (DEBUG): Slow query (92.49 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyun work', '2018 06 16 \xD8\xAA\xD8\xB1...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/06/16/\xD8\xAA\xD8\xB1...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/06/16/\xD8\xAA\xD8\xB1...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/08/18/%D8%AD%D9%85%D8%A7%D8%B3-%D9%84%D9%86-%D8%AA%D8%B7%D8%B9%D9%86-%D8%B4%D8%B9%D8%A8%D9%87%D8%A7-%D9%81%D9%8A-%D8%A7%D9%84%D8%B8%D9%87%D8%B1/mileyl.com, Stored debug messages: 2023-12-24 21:04:14 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2017/08/18/حماس-لن-تطعن-شعبها-في-الظهر/mileyl.com 2023-12-24 21:04:14 PST (DEBUG): Processing 404 for URL: /2017/08/18/حماس-لن-تطعن-شعبها-في-الظهر/mileyl.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2017/08/18/حماس-لن-تطعن-شعبها-في-الظهر/mileyl.com 2023-12-24 21:04:15 PST (DEBUG): No posts or pages matching slug: mileyl.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (90.63 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'mileyl com', '2017 08 18 \xD8\xAD\xD9\x85...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/08/18/\xD8\xAD\xD9\x85...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/08/18/\xD8\xAD\xD9\x85...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/08/12/%D9%83%D9%8A%D9%81-%D9%86%D8%AC%D8%A7-%D8%B7%D9%81%D9%84%D9%8A%D9%86-%D9%84%D8%A8%D9%86%D8%A7%D9%86%D9%8A%D9%8A%D9%86-%D9%85%D9%86-%D8%A7%D9%84%D9%85%D9%88%D8%AA-%D8%A7%D9%84%D9%85%D8%AD%D9%82%D9%82/kaiyuncn.net, Stored debug messages: 2023-12-24 21:03:54 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /2020/08/12/كيف-نجا-طفلين-لبنانيين-من-الموت-المحقق/kaiyuncn.net 2023-12-24 21:03:54 PST (DEBUG): Processing 404 for URL: /2020/08/12/كيف-نجا-طفلين-لبنانيين-من-الموت-المحقق/kaiyuncn.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 95.108.213.puf6j13okao0, REQUEST_URI: /2020/08/12/كيف-نجا-طفلين-لبنانيين-من-الموت-المحقق/kaiyuncn.net 2023-12-24 21:03:55 PST (DEBUG): No posts or pages matching slug: kaiyuncn.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (110.73 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyuncn net', '2020 08 12 \xD9\x83\xD9\x8A...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/08/12/\xD9\x83\xD9\x8A...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/08/12/\xD9\x83\xD9\x8A...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/11/21/9-%D8%A3%D8%B4%D9%8A%D8%A7%D8%A1-%D8%AA%D8%AD%D8%AF%D8%AB-%D9%81%D9%8A-%D8%AC%D8%B3%D8%AF%D9%83-%D9%88%D9%84%D8%A7-%D8%AA%D8%B9%D8%B1%D9%81-%D8%B3%D8%B1%D9%87%D8%A7-%D8%A7%D9%84%D8%AD%D9%82%D9%8A/hgty188.net, Stored debug messages: 2023-12-24 21:05:02 PST (DEBUG): Processing 404 for URL: /2016/11/21/9-أشياء-تحدث-في-جسدك-ولا-تعرف-سرها-الحقي/hgty188.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.679mbr07le50, REQUEST_URI: /2016/11/21/9-أشياء-تحدث-في-جسدك-ولا-تعرف-سرها-الحقي/hgty188.net 2023-12-24 21:05:03 PST (DEBUG): No posts or pages matching slug: hgty188.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (43.2 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'hgty188 net', '2016 11 21 9 \xD8\xA3...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/11/21/9-\xD8\xA3...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/11/21/9-\xD8\xA3...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/11/24/%D8%A3%D9%8A%D9%87%D9%85%D8%A7-%D8%A7%D9%84%D8%A3%D9%81%D8%B6%D9%84-%D9%84%D8%B5%D8%AD%D8%AA%D9%83-%D8%A7%D9%84%D8%AD%D9%84%D9%8A%D8%A8-%D8%A7%D9%84%D8%A8%D8%A7%D8%B1%D8%AF-%D8%A3%D9%88-%D8%A7%D9%84/kaiyuanqp.net, Stored debug messages: 2023-12-24 21:03:29 PST (DEBUG): Processing 404 for URL: /2021/11/24/أيهما-الأفضل-لصحتك-الحليب-البارد-أو-ال/kaiyuanqp.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.683pp8r7ac60, REQUEST_URI: /2021/11/24/أيهما-الأفضل-لصحتك-الحليب-البارد-أو-ال/kaiyuanqp.net 2023-12-24 21:03:30 PST (DEBUG): No posts or pages matching slug: kaiyuanqp.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (135.59 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyuanqp net', '2021 11 24 \xD8\xA3\xD9\x8A...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/11/24/\xD8\xA3\xD9\x8A...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/11/24/\xD8\xA3\xD9\x8A...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/07/30/%D9%86%D8%AF%D9%89-%D8%A7%D9%84%D9%83%D8%A7%D9%85%D9%84-%D9%81%D9%8A-%D9%88%D8%B6%D8%B9-%D9%85%D8%B1%D9%8A%D8%A8-%D9%85%D8%B9-%D8%B5%D8%AF%D9%8A%D9%82%D8%AA%D9%87%D8%A7-%D8%A8%D9%85%D9%84%D8%A7%D8%A8/xcai168.net, Stored debug messages: 2023-12-24 21:05:20 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/07/30/ندى-الكامل-في-وضع-مريب-مع-صديقتها-بملاب/xcai168.net 2023-12-24 21:05:20 PST (DEBUG): Processing 404 for URL: /2023/07/30/ندى-الكامل-في-وضع-مريب-مع-صديقتها-بملاب/xcai168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2023/07/30/ندى-الكامل-في-وضع-مريب-مع-صديقتها-بملاب/xcai168.net 2023-12-24 21:05:21 PST (DEBUG): No posts or pages matching slug: xcai168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (24.49 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'xcai168 net', '2023 07 30 \xD9\x86\xD8\xAF...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/07/30/\xD9\x86\xD8\xAF...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/07/30/\xD9\x86\xD8\xAF...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2018/08/2-600x327.png, Stored debug messages: 2023-12-24 21:05:18 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2018/08/2-600x327.png | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com), REMOTE_ADDR: 64.124.8.5l7ct3qqlp20, REQUEST_URI: /wp-content/uploads/2018/08/2-600x327.png 2023-12-24 21:05:19 PST (DEBUG): No posts or pages matching slug: 2-600x327.png 2023-12-24 21:05:46 PST (DEBUG): Slow query (27.07 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '2 600x327 png', 'wp content uplo...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/03/21/%D9%85%D8%AF%D9%88%D9%91%D9%86-%D8%AA%D9%88%D9%86%D8%B3%D9%8A-%D8%A5%D8%AF%D8%A7%D9%86%D8%AA%D9%8A-%D9%85%D8%B3%D8%B1%D8%AD%D9%8A%D9%91%D8%A9-%D9%88%D8%A7%D9%84%D8%B3%D9%8A%D8%A7%D8%B3%D9%8A-%D8%AD/shaba188.net, Stored debug messages: 2023-12-24 21:05:05 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/03/21/مدوّن-تونسي-إدانتي-مسرحيّة-والسياسي-ح/shaba188.net 2023-12-24 21:05:05 PST (DEBUG): Processing 404 for URL: /2016/03/21/مدوّن-تونسي-إدانتي-مسرحيّة-والسياسي-ح/shaba188.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2016/03/21/مدوّن-تونسي-إدانتي-مسرحيّة-والسياسي-ح/shaba188.net 2023-12-24 21:05:06 PST (DEBUG): No posts or pages matching slug: shaba188.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (40.18 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'shaba188 net', '2016 03 21 \xD9\x85\xD8\xAF...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/03/21/\xD9\x85\xD8\xAF...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/03/21/\xD9\x85\xD8\xAF...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/05/04/%D9%85%D8%AC%D8%B2%D8%B1%D8%A9-%D8%B5%D8%A8%D8%B1%D8%A7-%D9%88%D8%B4%D8%A7%D8%AA%D9%8A%D9%84%D8%A7-%D8%A3%D8%AD%D9%8A%D8%A7%D8%A1-%D8%AA%D8%A8%D9%82%D9%88%D8%A7-%D9%85%D9%86-%D8%AC%D8%B2%D8%A7/jiangnantiyu.live, Stored debug messages: 2023-12-24 21:02:27 PST (DEBUG): Processing 404 for URL: /2017/05/04/مجزرة-صبرا-وشاتيلا-أحياء-تبقوا-من-جزا/jiangnantiyu.live | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.683pp8r7ac60, REQUEST_URI: /2017/05/04/مجزرة-صبرا-وشاتيلا-أحياء-تبقوا-من-جزا/jiangnantiyu.live 2023-12-24 21:02:28 PST (DEBUG): No posts or pages matching slug: jiangnantiyu.live 2023-12-24 21:05:46 PST (DEBUG): Slow query (198.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'jiangnantiyu li...', '2017 05 04 \xD9\x85\xD8\xAC...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/05/04/\xD9\x85\xD8\xAC...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/05/04/\xD9\x85\xD8\xAC...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/01/26/%D8%B7%D8%AD%D9%86%D9%88%D9%86-%D8%A8%D9%86-%D8%B2%D8%A7%D9%8A%D8%AF-%D9%8A%D8%B1%D8%A7%D9%82%D8%A8-%D9%83%D9%84%D9%91-%D8%B4%D9%8A%D8%A1-%D9%81%D8%A7%D9%8A%D9%86%D9%86%D8%B4%D8%A7%D9%84-%D8%AA/huatihui.work, Stored debug messages: 2023-12-24 21:04:32 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/01/26/طحنون-بن-زايد-يراقب-كلّ-شيء-فايننشال-ت/huatihui.work 2023-12-24 21:04:32 PST (DEBUG): Processing 404 for URL: /2021/01/26/طحنون-بن-زايد-يراقب-كلّ-شيء-فايننشال-ت/huatihui.work | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2021/01/26/طحنون-بن-زايد-يراقب-كلّ-شيء-فايننشال-ت/huatihui.work 2023-12-24 21:04:33 PST (DEBUG): No posts or pages matching slug: huatihui.work 2023-12-24 21:05:46 PST (DEBUG): Slow query (72.68 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'huatihui work', '2021 01 26 \xD8\xB7\xD8\xAD...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/01/26/\xD8\xB7\xD8\xAD...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/01/26/\xD8\xB7\xD8\xAD...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/08/30/%D8%BA%D8%A7%D8%AF%D8%A9-%D8%B9%D9%88%D9%8A%D8%B3-%D8%B9%D9%86-%D8%B9%D8%AF%D9%85-%D8%B9%D9%85%D9%84%D9%87%D8%A7-%D9%81%D9%8A-%D9%82%D9%86%D8%A7%D8%A9-%D8%A7%D9%84%D8%B9%D8%B1%D8%A8%D9%8A%D8%A9/pmzr168.com, Stored debug messages: 2023-12-24 21:05:11 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2017/08/30/غادة-عويس-عن-عدم-عملها-في-قناة-العربية/pmzr168.com 2023-12-24 21:05:11 PST (DEBUG): Processing 404 for URL: /2017/08/30/غادة-عويس-عن-عدم-عملها-في-قناة-العربية/pmzr168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2017/08/30/غادة-عويس-عن-عدم-عملها-في-قناة-العربية/pmzr168.com 2023-12-24 21:05:11 PST (DEBUG): No posts or pages matching slug: pmzr168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (34.34 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pmzr168 com', '2017 08 30 \xD8\xBA\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/08/30/\xD8\xBA\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/08/30/\xD8\xBA\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:02:30 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6.1 Safari/605.1.15, REMOTE_ADDR: 88.243.0.2carvkpp5av0, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:02:31 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (195.07 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/10/03/%D8%AB%D9%84%D8%A7%D8%AB%D8%A9-%D9%85%D8%B3%D9%86%D9%8A%D9%86-%D9%8A%D9%84%D9%82%D9%86%D9%88%D9%86-%D9%84%D8%B5%D8%A7%D9%8B-%D8%AF%D8%B1%D8%B3%D8%A7-%D9%82%D8%A7%D8%B3%D9%8A%D8%A7%D9%8B-%D9%81%D9%8A/pmzr.org, Stored debug messages: 2023-12-24 21:03:11 PST (DEBUG): Processing 404 for URL: /2016/10/03/ثلاثة-مسنين-يلقنون-لصاً-درسا-قاسياً-في/pmzr.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.v1ouqr6cggc0, REQUEST_URI: /2016/10/03/ثلاثة-مسنين-يلقنون-لصاً-درسا-قاسياً-في/pmzr.org 2023-12-24 21:03:12 PST (DEBUG): No posts or pages matching slug: pmzr.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (153.78 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pmzr org', '2016 10 03 \xD8\xAB\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/10/03/\xD8\xAB\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/10/03/\xD8\xAB\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/03/19/%D8%A7%D9%84%D9%85%D8%AE%D9%84%D9%88%D8%B9-%D9%85%D8%A8%D8%A7%D8%B1%D9%83-%D9%8A%D8%AA%D8%B0%D9%83%D8%B1-%D8%A8%D8%B7%D9%88%D9%84%D8%A7%D8%AA%D9%87-%D8%A7%D9%84%D8%AE%D8%A7%D8%B1%D9%82%D8%A9-%D8%B1/pgdz168.com, Stored debug messages: 2023-12-24 21:05:14 PST (DEBUG): Processing 404 for URL: /2017/03/19/المخلوع-مبارك-يتذكر-بطولاته-الخارقة-ر/pgdz168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4ou4rgg881j0, REQUEST_URI: /2017/03/19/المخلوع-مبارك-يتذكر-بطولاته-الخارقة-ر/pgdz168.com 2023-12-24 21:05:15 PST (DEBUG): No posts or pages matching slug: pgdz168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (31.13 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pgdz168 com', '2017 03 19 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/03/19/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/03/19/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /latest/tag/%D9%86%D8%AC%D9%85-%D8%B3%D8%B9%D9%88%D8%AF%D9%8A/, Stored debug messages: 2023-12-24 21:04:42 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /latest/tag/نجم-سعودي/ 2023-12-24 21:04:42 PST (DEBUG): Processing 404 for URL: /latest/tag/نجم-سعودي/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 66.249.72.58fvr7j8njt0, REQUEST_URI: /latest/tag/نجم-سعودي/ 2023-12-24 21:04:43 PST (DEBUG): No posts or pages matching slug: نجم-سعودي 2023-12-24 21:05:46 PST (DEBUG): Slow query (62.61 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD9\x86\xD8\xAC\xD9\x85 \xD8\xB3\xD8\xB9\xD9\x88\xD8\xAF...', 'latest tag \xD9\x86\xD8\xAC...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('latest/tag/\xD9\x86\xD8\xAC...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('latest/tag/\xD9\x86\xD8\xAC...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/05/22/%D9%84%D9%8A%D8%B3-%D9%84%D9%84%D8%B7%D9%91%D8%A8%D8%AE-%D9%81%D8%AD%D8%B3%D8%A8-%D9%85%D8%A7-%D8%A7%D9%84%D8%B3%D8%A8%D8%A8-%D8%A7%D9%84%D8%B0%D9%8A-%D9%8A%D8%AC%D8%B9%D9%84%D9%83-%D8%AA%D8%B6/kokty168.net, Stored debug messages: 2023-12-24 21:05:19 PST (DEBUG): Processing 404 for URL: /2023/05/22/ليس-للطّبخ-فحسب-ما-السبب-الذي-يجعلك-تض/kokty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4ruce7vs32i0, REQUEST_URI: /2023/05/22/ليس-للطّبخ-فحسب-ما-السبب-الذي-يجعلك-تض/kokty168.net 2023-12-24 21:05:20 PST (DEBUG): No posts or pages matching slug: kokty168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (26.13 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kokty168 net', '2023 05 22 \xD9\x84\xD9\x8A...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/05/22/\xD9\x84\xD9\x8A...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/05/22/\xD9\x84\xD9\x8A...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/04/21/%D8%B4%D8%A7%D9%87%D8%AF-%D8%AA%D8%BA%D8%B1%D9%8A%D8%AF%D8%A9-%D8%AA%D8%B1%D8%A7%D9%85%D8%A8-%D8%A7%D9%84%D9%85%D8%AD%D8%B0%D9%88%D9%81%D8%A9-%D8%B9%D9%86-%D8%AA%D9%81%D8%AC%D9%8A%D8%B1%D8%A7/shaba188.net, Stored debug messages: 2023-12-24 21:04:15 PST (DEBUG): Processing 404 for URL: /2019/04/21/شاهد-تغريدة-ترامب-المحذوفة-عن-تفجيرا/shaba188.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.58fvr7j8njt0, REQUEST_URI: /2019/04/21/شاهد-تغريدة-ترامب-المحذوفة-عن-تفجيرا/shaba188.net 2023-12-24 21:04:16 PST (DEBUG): No posts or pages matching slug: shaba188.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (90.26 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'shaba188 net', '2019 04 21 \xD8\xB4\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/04/21/\xD8\xB4\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/04/21/\xD8\xB4\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tag/%D8%A7%D9%84%D8%A7%D9%86%D8%AA%D8%AE%D8%A7%D8%A8%D8%A7%D8%AA-%D8%A7%D9%84%D8%A8%D8%B1%D9%84%D9%85%D8%A7%D9%86%D9%8A%D8%A9/agzl168.com, Stored debug messages: 2023-12-24 21:02:43 PST (DEBUG): Processing 404 for URL: /tag/الانتخابات-البرلمانية/agzl168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.352auk7meal0, REQUEST_URI: /tag/الانتخابات-البرلمانية/agzl168.com 2023-12-24 21:02:43 PST (DEBUG): No posts or pages matching slug: agzl168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (182.48 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agzl168 com', 'tag \xD8\xA7\xD9\x84\xD8\xA7\xD9\x86\xD8\xAA\xD8...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tag/\xD8\xA7\xD9\x84\xD8\xA7\xD9\x86\xD8\xAA\xD8...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tag/\xD8\xA7\xD9\x84\xD8\xA7\xD9\x86\xD8\xAA\xD8...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/, Requested URL: /wp-content/cache/minify/9f8f7.css, Stored debug messages: 2023-12-24 21:05:29 PST (DEBUG): Processing 404 for URL: /wp-content/cache/minify/9f8f7.css | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 13; SAMSUNG SM-A037F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/23.0 Chrome/115.0.0.0 Mobile Safari/537.36, REMOTE_ADDR: 37.40.220.55iviga0nm00, REQUEST_URI: /wp-content/cache/minify/9f8f7.css 2023-12-24 21:05:30 PST (DEBUG): No posts or pages matching slug: 9f8f7.css 2023-12-24 21:05:46 PST (DEBUG): Slow query (15.51 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '9f8f7 css', 'wp content cach...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/cach...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/cach...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 5), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/-.jpg, Stored debug messages: 2023-12-24 21:02:20 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/-.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy), REMOTE_ADDR: 74.125.212.7cpf47siqss0, REQUEST_URI: /wp-content/uploads/-.jpg 2023-12-24 21:02:21 PST (DEBUG): No posts or pages matching slug: -.jpg 2023-12-24 21:03:10 PST (DEBUG): Slow query (49.19 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:46 PST (DEBUG): Slow query (155.85 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(5, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(5) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(555): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs(' jpg', 'wp content uplo...', 'tags', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, ' jpg', 'wp content uplo...', 'tags') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/09/13/%D8%AC%D9%85%D8%A7%D9%87%D9%8A%D8%B1-%D8%A8%D8%B1%D8%B4%D9%84%D9%88%D9%86%D8%A9-%D8%AA%D8%AA%D9%84%D9%82%D9%89-%D8%B6%D8%B1%D8%A8%D8%A9-%D9%82%D9%88%D9%8A%D8%A9-%D8%A8%D9%87%D8%B0%D8%A7-%D8%A7%D9%84/huatihui.work, Stored debug messages: 2023-12-24 21:02:29 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/09/13/جماهير-برشلونة-تتلقى-ضربة-قوية-بهذا-ال/huatihui.work 2023-12-24 21:02:29 PST (DEBUG): Processing 404 for URL: /2023/09/13/جماهير-برشلونة-تتلقى-ضربة-قوية-بهذا-ال/huatihui.work | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.2eecmeqd33q0, REQUEST_URI: /2023/09/13/جماهير-برشلونة-تتلقى-ضربة-قوية-بهذا-ال/huatihui.work 2023-12-24 21:02:29 PST (DEBUG): No posts or pages matching slug: huatihui.work 2023-12-24 21:05:46 PST (DEBUG): Slow query (196.49 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'huatihui work', '2023 09 13 \xD8\xAC\xD9\x85...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/09/13/\xD8\xAC\xD9\x85...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/09/13/\xD8\xAC\xD9\x85...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/12/13/%D8%B5%D9%88%D8%B1-%D8%A3%D9%82%D9%85%D8%A7%D8%B1-%D8%B5%D9%86%D8%A7%D8%B9%D9%8A%D8%A9-%D8%AA%D9%83%D8%B4%D9%81-%D8%A7%D8%B3%D8%AA%D8%B9%D8%AF%D8%A7%D8%AF-%D8%A5%D9%8A%D8%B1%D8%A7%D9%86-%D9%84%D8%A5/bandaotiyu.ai, Stored debug messages: 2023-12-24 21:02:47 PST (DEBUG): Processing 404 for URL: /2021/12/13/صور-أقمار-صناعية-تكشف-استعداد-إيران-لإ/bandaotiyu.ai | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.7cpf47siqss0, REQUEST_URI: /2021/12/13/صور-أقمار-صناعية-تكشف-استعداد-إيران-لإ/bandaotiyu.ai 2023-12-24 21:02:48 PST (DEBUG): No posts or pages matching slug: bandaotiyu.ai 2023-12-24 21:05:46 PST (DEBUG): Slow query (177.84 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'bandaotiyu ai', '2021 12 13 \xD8\xB5\xD9\x88...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/12/13/\xD8\xB5\xD9\x88...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/12/13/\xD8\xB5\xD9\x88...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/03/03/%D8%AD%D8%B1%D9%83%D8%A9-%D8%A7%D8%B3%D8%AA%D9%81%D8%B2%D8%A7%D8%B2%D9%8A%D8%A9-%D9%83%D8%A7%D8%AF%D8%AA-%D8%AA%D9%86%D9%87%D9%8A-%D9%85%D8%A8%D8%A7%D8%B1%D8%A7%D8%A9-%D8%A7%D9%84%D9%86%D8%B5%D8%B1/j9jiuyouhui.com, Stored debug messages: 2023-12-24 21:03:28 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/03/03/حركة-استفزازية-كادت-تنهي-مباراة-النصر/j9jiuyouhui.com 2023-12-24 21:03:28 PST (DEBUG): Processing 404 for URL: /2023/03/03/حركة-استفزازية-كادت-تنهي-مباراة-النصر/j9jiuyouhui.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2023/03/03/حركة-استفزازية-كادت-تنهي-مباراة-النصر/j9jiuyouhui.com 2023-12-24 21:03:29 PST (DEBUG): No posts or pages matching slug: j9jiuyouhui.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (136.77 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'j9jiuyouhui com', '2023 03 03 \xD8\xAD\xD8\xB1...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/03/03/\xD8\xAD\xD8\xB1...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/03/03/\xD8\xAD\xD8\xB1...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/04/14/%D9%85%D8%AD%D9%85%D8%AF-%D8%A8%D9%86-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D9%8A%D8%B1%D9%8A%D8%AF-%D8%A3%D9%86-%D9%8A%D8%B3%D8%AA%D8%AD%D9%88%D8%B0-%D8%B9%D9%84%D9%89-%D8%B4%D8%A8%D9%83%D8%A9/agbjl.org, Stored debug messages: 2023-12-24 21:02:51 PST (DEBUG): Processing 404 for URL: /2017/04/14/محمد-بن-سلمان-يريد-أن-يستحوذ-على-شبكة/agbjl.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.653ji11g94k0, REQUEST_URI: /2017/04/14/محمد-بن-سلمان-يريد-أن-يستحوذ-على-شبكة/agbjl.org 2023-12-24 21:02:52 PST (DEBUG): No posts or pages matching slug: agbjl.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (173.53 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agbjl org', '2017 04 14 \xD9\x85\xD8\xAD...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/04/14/\xD9\x85\xD8\xAD...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/04/14/\xD9\x85\xD8\xAD...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/05/27/%D9%83%D8%A7%D8%AA%D8%A8-%D8%B9%D9%8F%D9%85%D8%A7%D9%86%D9%8A-%D9%8A%D9%83%D8%B4%D9%81-%D8%AA%D9%81%D8%A7%D8%B5%D9%8A%D9%84-%D8%A7%D9%84%D8%AA%D9%88%D8%A7%D8%B5%D9%84-%D8%A7%D9%84%D9%85%D8%B4%D8%AA/yxty168.org%22, Stored debug messages: 2023-12-24 21:05:35 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2019/05/27/كاتب-عُماني-يكشف-تفاصيل-التواصل-المشت/yxty168.org 2023-12-24 21:05:35 PST (DEBUG): Processing 404 for URL: /2019/05/27/كاتب-عُماني-يكشف-تفاصيل-التواصل-المشت/yxty168.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.55esdst4v200, REQUEST_URI: /2019/05/27/كاتب-عُماني-يكشف-تفاصيل-التواصل-المشت/yxty168.org" 2023-12-24 21:05:36 PST (DEBUG): No posts or pages matching slug: yxty168.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (9.53 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'yxty168 org', '2019 05 27 \xD9\x83\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/05/27/\xD9\x83\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/05/27/\xD9\x83\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/08/08/%D8%A8%D8%B9%D8%AF-%D8%A3%D8%B3%D8%A7%D8%A8%D9%8A%D8%B9-%D8%B9%D9%84%D9%89-%D8%AA%D9%86%D8%B5%D9%8A%D8%A8%D9%87-%D8%A7%D9%84%D8%B3%D9%81%D9%8A%D8%B1-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D9%84/bandaotiyu.ai, Stored debug messages: 2023-12-24 21:03:43 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2017/08/08/بعد-أسابيع-على-تنصيبه-السفير-السعودي-ل/bandaotiyu.ai 2023-12-24 21:03:43 PST (DEBUG): Processing 404 for URL: /2017/08/08/بعد-أسابيع-على-تنصيبه-السفير-السعودي-ل/bandaotiyu.ai | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.2eecmeqd33q0, REQUEST_URI: /2017/08/08/بعد-أسابيع-على-تنصيبه-السفير-السعودي-ل/bandaotiyu.ai 2023-12-24 21:03:44 PST (DEBUG): No posts or pages matching slug: bandaotiyu.ai 2023-12-24 21:05:46 PST (DEBUG): Slow query (121.95 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'bandaotiyu ai', '2017 08 08 \xD8\xA8\xD8\xB9...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/08/08/\xD8\xA8\xD8\xB9...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/08/08/\xD8\xA8\xD8\xB9...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:02:41 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1, REMOTE_ADDR: 2601:243:2480:5o9onhcuqeh0, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:02:42 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (183.63 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.19, Requested URL: /superpwa-sw.js?2.2.19, Stored debug messages: 2023-12-24 21:02:25 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_19= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36, REMOTE_ADDR: 2600:1700:5170:79l9s2iauo10, REQUEST_URI: /superpwa-sw.js?2.2.19 2023-12-24 21:02:26 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (200.03 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/11/23/%D8%B4%D9%85%D8%B3-%D8%A7%D9%84%D9%83%D9%88%D9%8A%D8%AA%D9%8A%D8%A9-%D8%AA%D8%AB%D9%8A%D8%B1-%D8%A7%D9%84%D8%AC%D8%AF%D9%84-%D8%A8%D9%81%D9%8A%D8%AF%D9%8A%D9%88-%D9%85%D8%B9-%D9%83%D9%88%D8%A7%D9%81/leyutiy.net, Stored debug messages: 2023-12-24 21:03:09 PST (DEBUG): Processing 404 for URL: /2022/11/23/شمس-الكويتية-تثير-الجدل-بفيديو-مع-كواف/leyutiy.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.5amchoi8lso0, REQUEST_URI: /2022/11/23/شمس-الكويتية-تثير-الجدل-بفيديو-مع-كواف/leyutiy.net 2023-12-24 21:03:10 PST (DEBUG): No posts or pages matching slug: leyutiy.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (155.57 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'leyutiy net', '2022 11 23 \xD8\xB4\xD9\x85...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/11/23/\xD8\xB4\xD9\x85...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/11/23/\xD8\xB4\xD9\x85...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/12/22/%D9%84%D9%87%D8%B0%D8%A7-%D8%A7%D9%84%D8%B3%D8%A8%D8%A8-%D9%8A%D8%AC%D8%A8-%D8%A3%D9%84%D8%A7-%D8%AA%D8%B6%D8%B9-%D8%A7%D9%84%D8%AD%D9%84%D9%8A%D8%A8-%D9%81%D9%8A-%D9%82%D9%87%D9%88%D8%AA%D9%83/yxty168.org, Stored debug messages: 2023-12-24 21:03:33 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/12/22/لهذا-السبب-يجب-ألا-تضع-الحليب-في-قهوتك/yxty168.org 2023-12-24 21:03:33 PST (DEBUG): Processing 404 for URL: /2022/12/22/لهذا-السبب-يجب-ألا-تضع-الحليب-في-قهوتك/yxty168.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2022/12/22/لهذا-السبب-يجب-ألا-تضع-الحليب-في-قهوتك/yxty168.org 2023-12-24 21:03:34 PST (DEBUG): No posts or pages matching slug: yxty168.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (132.2 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'yxty168 org', '2022 12 22 \xD9\x84\xD9\x87...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/12/22/\xD9\x84\xD9\x87...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/12/22/\xD9\x84\xD9\x87...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/85-3.jpg, Stored debug messages: 2023-12-24 21:02:23 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/85-3.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com), REMOTE_ADDR: 64.124.8.1k2sub73o7v0, REQUEST_URI: /wp-content/uploads/85-3.jpg 2023-12-24 21:02:24 PST (DEBUG): No posts or pages matching slug: 85-3.jpg 2023-12-24 21:05:46 PST (DEBUG): Slow query (201.88 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '85 3 jpg', 'wp content uplo...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/04/14/%D9%87%D9%8A%D8%A7-%D8%A7%D9%84%D8%B4%D8%B9%D9%8A%D8%A8%D9%8A-%D8%AA%D9%83%D8%B4%D9%81-%D8%B3%D8%B1%D9%91-%D8%BA%D9%8A%D8%A7%D8%A8%D9%87%D8%A7-%D8%A8%D8%B1%D9%85%D8%B6%D8%A7%D9%86-%D9%87%D9%84/shaba168.com, Stored debug messages: 2023-12-24 21:03:08 PST (DEBUG): Processing 404 for URL: /2021/04/14/هيا-الشعيبي-تكشف-سرّ-غيابها-برمضان-هل/shaba168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.683pp8r7ac60, REQUEST_URI: /2021/04/14/هيا-الشعيبي-تكشف-سرّ-غيابها-برمضان-هل/shaba168.com 2023-12-24 21:03:09 PST (DEBUG): No posts or pages matching slug: shaba168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (156.76 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'shaba168 com', '2021 04 14 \xD9\x87\xD9\x8A...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/04/14/\xD9\x87\xD9\x8A...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/04/14/\xD9\x87\xD9\x8A...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: http://www.watanserb.com, Requested URL: /wpcontent/uploads/2023/12/%D9%85%D8%AD%D9%88%D8%B1%D9%81%D9%8A%D9%84%D8%A7%D8%AF%D9%84%D9%81%D9%8A%D8%A71.jpg, Stored debug messages: 2023-12-24 21:03:00 PST (DEBUG): Processing 404 for URL: /wpcontent/uploads/2023/12/محورفيلادلفيا1.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36, REMOTE_ADDR: 65.21.127.55nv4u0ub4v0, REQUEST_URI: /wpcontent/uploads/2023/12/محورفيلادلفيا1.jpg 2023-12-24 21:03:01 PST (DEBUG): No posts or pages matching slug: محورفيلادلفيا1.jpg 2023-12-24 21:05:46 PST (DEBUG): Slow query (164.92 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD9\x85\xD8\xAD\xD9\x88\xD8\xB1\xD9\x81\xD9\x8A\xD9\x84\xD8...', 'wpcontent uploa...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wpcontent/uploa...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wpcontent/uploa...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:02:47 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36, REMOTE_ADDR: 196.112.153.682b668jauc0, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:02:48 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (178.21 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /latest/tag/%D9%86%D8%AC%D9%85-%D8%B3%D8%B9%D9%88%D8%AF%D9%8A/, Stored debug messages: 2023-12-24 21:03:01 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /latest/tag/نجم-سعودي/ 2023-12-24 21:03:01 PST (DEBUG): Processing 404 for URL: /latest/tag/نجم-سعودي/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /latest/tag/نجم-سعودي/ 2023-12-24 21:03:02 PST (DEBUG): No posts or pages matching slug: نجم-سعودي 2023-12-24 21:05:46 PST (DEBUG): Slow query (163.59 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD9\x86\xD8\xAC\xD9\x85 \xD8\xB3\xD8\xB9\xD9\x88\xD8\xAF...', 'latest tag \xD9\x86\xD8\xAC...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('latest/tag/\xD9\x86\xD8\xAC...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('latest/tag/\xD9\x86\xD8\xAC...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/10/31/%D8%A7%D9%84%D8%A3%D9%87%D9%84%D9%8A-%D9%8A%D9%81%D9%88%D8%B2-%D8%A8%D8%B4%D9%82-%D8%A7%D9%84%D8%A3%D9%86%D9%81%D8%B3-%D8%B9%D9%84%D9%89-%D8%A7%D9%84%D8%A8%D9%86%D9%83-%D8%A7%D9%84%D8%A3%D9%87%D9%84/kokty168.com, Stored debug messages: 2023-12-24 21:03:35 PST (DEBUG): Processing 404 for URL: /2021/10/31/الأهلي-يفوز-بشق-الأنفس-على-البنك-الأهل/kokty168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.58fvr7j8njt0, REQUEST_URI: /2021/10/31/الأهلي-يفوز-بشق-الأنفس-على-البنك-الأهل/kokty168.com 2023-12-24 21:03:36 PST (DEBUG): No posts or pages matching slug: kokty168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (130.11 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kokty168 com', '2021 10 31 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/10/31/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/10/31/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/05/19/%D8%A7%D9%84%D9%82%D9%88%D9%89-%D8%A7%D9%84%D9%88%D8%B7%D9%86%D9%8A%D8%A9-%D9%88%D8%A7%D9%84%D8%A5%D8%B3%D9%84%D8%A7%D9%85%D9%8A%D8%A9-%D9%81%D9%8A-%D8%B1%D8%A7%D9%85-%D8%A7%D9%84%D9%84%D9%87-%D8%AA/bdtiyu168.com, Stored debug messages: 2023-12-24 21:03:19 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/05/19/القوى-الوطنية-والإسلامية-في-رام-الله-ت/bdtiyu168.com 2023-12-24 21:03:19 PST (DEBUG): Processing 404 for URL: /2018/05/19/القوى-الوطنية-والإسلامية-في-رام-الله-ت/bdtiyu168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2018/05/19/القوى-الوطنية-والإسلامية-في-رام-الله-ت/bdtiyu168.com 2023-12-24 21:03:20 PST (DEBUG): No posts or pages matching slug: bdtiyu168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (146.09 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'bdtiyu168 com', '2018 05 19 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/05/19/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/05/19/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/, Requested URL: /wp-content/cache/minify/16836.js, Stored debug messages: 2023-12-24 21:04:23 PST (DEBUG): Processing 404 for URL: /wp-content/cache/minify/16836.js | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 13; SAMSUNG SM-A145F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/19.0 Chrome/102.0.5005.125 Mobile Safari/537.36, REMOTE_ADDR: 154.121.36.7gidf4plci10, REQUEST_URI: /wp-content/cache/minify/16836.js 2023-12-24 21:04:23 PST (DEBUG): No posts or pages matching slug: 16836.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (82.32 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '16836 js', 'wp content cach...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/cach...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/cach...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/12/16/%D9%82%D8%B7%D8%B1%D9%8A%D8%A9-%D8%AA%D8%B5%D8%AF%D9%85-%D8%A7%D9%84%D9%81%D9%86%D8%A7%D9%86-%D8%A7%D9%84%D9%85%D8%B5%D8%B1%D9%8A-%D9%87%D8%A7%D9%86%D9%8A-%D8%B1%D9%85%D8%B2%D9%8A-%D9%88%D8%AA%D8%B6/kaiyuanqp.net, Stored debug messages: 2023-12-24 21:04:27 PST (DEBUG): Processing 404 for URL: /2022/12/16/قطرية-تصدم-الفنان-المصري-هاني-رمزي-وتض/kaiyuanqp.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.6jr526g0l480, REQUEST_URI: /2022/12/16/قطرية-تصدم-الفنان-المصري-هاني-رمزي-وتض/kaiyuanqp.net 2023-12-24 21:04:28 PST (DEBUG): No posts or pages matching slug: kaiyuanqp.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (77.68 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyuanqp net', '2022 12 16 \xD9\x82\xD8\xB7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/12/16/\xD9\x82\xD8\xB7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/12/16/\xD9\x82\xD8\xB7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/11/18/%D8%B9%D8%A8%D8%AF-%D8%A7%D9%84%D8%AE%D8%A7%D9%84%D9%82-%D8%B9%D8%A8%D8%AF%D8%A7%D9%84%D9%84%D9%87-%D9%8A%D9%87%D9%8A%D8%AC-%D8%A7%D9%84%D8%B1%D8%A3%D9%8A-%D8%A7%D9%84%D8%B9%D8%A7%D9%85-%D8%A8%D8%A7/xcai188.com, Stored debug messages: 2023-12-24 21:03:59 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/11/18/عبد-الخالق-عبدالله-يهيج-الرأي-العام-با/xcai188.com 2023-12-24 21:03:59 PST (DEBUG): Processing 404 for URL: /2018/11/18/عبد-الخالق-عبدالله-يهيج-الرأي-العام-با/xcai188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.1hvru0slocmg, REQUEST_URI: /2018/11/18/عبد-الخالق-عبدالله-يهيج-الرأي-العام-با/xcai188.com 2023-12-24 21:04:00 PST (DEBUG): No posts or pages matching slug: xcai188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (105.71 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'xcai188 com', '2018 11 18 \xD8\xB9\xD8\xA8...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/11/18/\xD8\xB9\xD8\xA8...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/11/18/\xD8\xB9\xD8\xA8...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/06/15/%D8%A7%D8%BA%D8%AA%D8%B5%D8%A7%D8%A8-%D9%88%D8%AC%D9%86%D8%B3-%D8%AD%D8%B1%D8%A7%D9%85-%D8%AF%D8%A7%D8%AE%D9%84-%D8%A7%D9%84%D8%A8%D8%B1%D9%84%D9%85%D8%A7%D9%86-%D8%A7%D9%84%D8%A3%D8%B3%D8%AA%D8%B1/shaba168.com, Stored debug messages: 2023-12-24 21:04:00 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/06/15/اغتصاب-وجنس-حرام-داخل-البرلمان-الأستر/shaba168.com 2023-12-24 21:04:00 PST (DEBUG): Processing 404 for URL: /2023/06/15/اغتصاب-وجنس-حرام-داخل-البرلمان-الأستر/shaba168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.1hvru0slocmg, REQUEST_URI: /2023/06/15/اغتصاب-وجنس-حرام-داخل-البرلمان-الأستر/shaba168.com 2023-12-24 21:04:01 PST (DEBUG): No posts or pages matching slug: shaba168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (105.21 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'shaba168 com', '2023 06 15 \xD8\xA7\xD8\xBA...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/06/15/\xD8\xA7\xD8\xBA...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/06/15/\xD8\xA7\xD8\xBA...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/01/19/%D9%85%D8%A7-%D8%A7%D9%84%D8%B0%D9%8A-%D9%83%D8%AA%D8%A8%D9%87-%D8%A7%D9%84%D8%AF%D8%A7%D8%B9%D9%8A%D8%A9-%D8%A7%D9%84%D9%83%D9%88%D9%8A%D8%AA%D9%8A-%D9%85%D8%A8%D8%A7%D8%B1%D9%83-%D8%A7%D9%84%D8%A8/xcai168.net, Stored debug messages: 2023-12-24 21:02:25 PST (DEBUG): Processing 404 for URL: /2021/01/19/ما-الذي-كتبه-الداعية-الكويتي-مبارك-الب/xcai168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.64p913h85p40, REQUEST_URI: /2021/01/19/ما-الذي-كتبه-الداعية-الكويتي-مبارك-الب/xcai168.net 2023-12-24 21:02:26 PST (DEBUG): No posts or pages matching slug: xcai168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (200 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'xcai168 net', '2021 01 19 \xD9\x85\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/01/19/\xD9\x85\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/01/19/\xD9\x85\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/05/31/%D8%B4%D8%A7%D8%A8-%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D9%8A%D9%81%D8%B9%D9%84-%D9%85%D8%A7-%D9%84%D8%A7-%D9%8A%D9%8F%D8%B5%D8%AF%D9%8E%D9%91%D9%82-%D9%85%D8%B9-%D9%88%D8%A7%D9%84%D8%AF%D8%AA%D9%87-%D9%84/wanbo168.net, Stored debug messages: 2023-12-24 21:05:10 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/05/31/شاب-سعودي-يفعل-ما-لا-يُصدَّق-مع-والدته-ل/wanbo168.net 2023-12-24 21:05:11 PST (DEBUG): Processing 404 for URL: /2023/05/31/شاب-سعودي-يفعل-ما-لا-يُصدَّق-مع-والدته-ل/wanbo168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2023/05/31/شاب-سعودي-يفعل-ما-لا-يُصدَّق-مع-والدته-ل/wanbo168.net 2023-12-24 21:05:11 PST (DEBUG): No posts or pages matching slug: wanbo168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (34.33 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'wanbo168 net', '2023 05 31 \xD8\xB4\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/05/31/\xD8\xB4\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/05/31/\xD8\xB4\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/11/15/%D8%AA%D9%85-%D9%85%D9%86%D8%B9%D9%87-%D9%85%D9%86-%D8%A7%D9%84%D8%B3%D9%81%D8%B1-%D8%A8%D8%A2%D8%AE%D8%B1-%D9%84%D8%AD%D8%B8%D8%A9-%D9%87%D8%B0%D8%A7-%D9%85%D8%A7-%D8%AD%D8%AF%D8%AB-%D9%85%D8%B9/agzr188.com, Stored debug messages: 2023-12-24 21:02:52 PST (DEBUG): Processing 404 for URL: /2020/11/15/تم-منعه-من-السفر-بآخر-لحظة-هذا-ما-حدث-مع/agzr188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.69u3s9busol0, REQUEST_URI: /2020/11/15/تم-منعه-من-السفر-بآخر-لحظة-هذا-ما-حدث-مع/agzr188.com 2023-12-24 21:02:53 PST (DEBUG): No posts or pages matching slug: agzr188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (172.81 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agzr188 com', '2020 11 15 \xD8\xAA\xD9\x85...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/11/15/\xD8\xAA\xD9\x85...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/11/15/\xD8\xAA\xD9\x85...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2020/01/%D8%AA%D8%B9%D9%8A%D9%8A%D9%86-%D8%A7%D8%B3%D9%85%D8%A7%D8%B9%D9%8A%D9%84-%D9%82%D8%A7%D9%86%D9%8A-%D8%AE%D9%84%D9%81%D8%A7-%D9%84%D9%82%D8%A7%D8%B3%D9%85-%D8%B3%D9%84%D9%8A%D9%85%D8%A7%D9%86%D9%8A.jpg, Stored debug messages: 2023-12-24 21:04:24 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2020/01/تعيين-اسماعيل-قاني-خلفا-لقاسم-سليماني.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com), REMOTE_ADDR: 64.124.8.5l7ct3qqlp20, REQUEST_URI: /wp-content/uploads/2020/01/تعيين-اسماعيل-قاني-خلفا-لقاسم-سليماني.jpg 2023-12-24 21:04:25 PST (DEBUG): No posts or pages matching slug: تعيين-اسماعيل-قاني-خلفا-لقاسم-سليماني.jpg 2023-12-24 21:05:46 PST (DEBUG): Slow query (80.5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD8\xAA\xD8\xB9\xD9\x8A\xD9\x8A\xD9\x86 \xD8\xA7\xD8\xB3...', 'wp content uplo...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/11/07/%D9%81%D9%88%D8%A7%D8%A6%D8%AF-%D9%84%D8%A7-%D8%AA%D8%B5%D8%AF%D9%82-%D9%84%D8%B4%D8%B1%D8%A8-%D9%85%D8%A7%D8%A1-%D8%A7%D9%84%D8%AE%D9%8A%D8%A7%D8%B1/agzr.org, Stored debug messages: 2023-12-24 21:04:33 PST (DEBUG): Processing 404 for URL: /2021/11/07/فوائد-لا-تصدق-لشرب-ماء-الخيار/agzr.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.74r8tnveue40, REQUEST_URI: /2021/11/07/فوائد-لا-تصدق-لشرب-ماء-الخيار/agzr.org 2023-12-24 21:04:34 PST (DEBUG): No posts or pages matching slug: agzr.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (71.55 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agzr org', '2021 11 07 \xD9\x81\xD9\x88...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/11/07/\xD9\x81\xD9\x88...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/11/07/\xD9\x81\xD9\x88...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2015/10/30/%D8%AA%D9%84%D9%8A%D8%AC%D8%B1%D8%A7%D9%81-%D8%A8%D9%8A%D9%84-%D8%AC%D9%8A%D8%AA%D8%B3-%D9%8A%D8%B3%D8%B9%D9%89-%D9%84%D8%AA%D8%BA%D9%8A%D9%8A%D8%B1-%D8%A7%D9%84%D8%B9%D8%A7%D9%84%D9%85-%D8%A8%D9%80/tbtiyu188.com, Stored debug messages: 2023-12-24 21:03:39 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2015/10/30/تليجراف-بيل-جيتس-يسعى-لتغيير-العالم-بـ/tbtiyu188.com 2023-12-24 21:03:39 PST (DEBUG): Processing 404 for URL: /2015/10/30/تليجراف-بيل-جيتس-يسعى-لتغيير-العالم-بـ/tbtiyu188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2015/10/30/تليجراف-بيل-جيتس-يسعى-لتغيير-العالم-بـ/tbtiyu188.com 2023-12-24 21:03:40 PST (DEBUG): No posts or pages matching slug: tbtiyu188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (126.06 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'tbtiyu188 com', '2015 10 30 \xD8\xAA\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2015/10/30/\xD8\xAA\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2015/10/30/\xD8\xAA\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2019/05/%D9%84%D8%A7-%D9%85%D9%88%D8%B3%D9%8A%D9%82%D9%89-%D9%81%D9%8A-%D8%A7%D9%84%D8%A3%D8%AD%D9%85%D8%AF%D9%8A-600x534.jpg, Stored debug messages: 2023-12-24 21:05:15 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2019/05/لا-موسيقى-في-الأحمدي-600x534.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com), REMOTE_ADDR: 64.124.8.1iin3mlivkp8, REQUEST_URI: /wp-content/uploads/2019/05/لا-موسيقى-في-الأحمدي-600x534.jpg 2023-12-24 21:05:16 PST (DEBUG): No posts or pages matching slug: لا-موسيقى-في-الأحمدي-600x534.jpg 2023-12-24 21:05:46 PST (DEBUG): Slow query (29.45 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD9\x84\xD8\xA7 \xD9\x85\xD9\x88\xD8\xB3\xD9\x8A\xD9\x82...', 'wp content uplo...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2020/07/%D9%81%D8%B6%D8%A7%D8%A6%D8%AD-%D9%85%D9%86%D8%B5%D9%88%D8%B1-%D8%A8%D9%86-%D8%B2%D8%A7%D9%8A%D8%AF-%D9%8A%D9%83%D8%B4%D9%81%D9%87%D8%A7-%D8%A8%D8%B1%D9%86%D8%A7%D9%85%D8%AC-%D9%85%D8%A7-%D8%AE%D9%81%D9%8A-%D8%A3%D8%B9%D8%B8%D9%85.jpg, Stored debug messages: 2023-12-24 21:02:55 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2020/07/فضائح-منصور-بن-زايد-يكشفها-برنامج-ما-خفي-أعظم.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy), REMOTE_ADDR: 74.125.210.58fvr7j8njt0, REQUEST_URI: /wp-content/uploads/2020/07/فضائح-منصور-بن-زايد-يكشفها-برنامج-ما-خفي-أعظم.jpg 2023-12-24 21:02:55 PST (DEBUG): No posts or pages matching slug: فضائح-منصور-بن-زايد-يكشفها-برنامج-ما-خفي-أعظم.jpg 2023-12-24 21:05:46 PST (DEBUG): Slow query (170.36 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD9\x81\xD8\xB6\xD8\xA7\xD8\xA6\xD8\xAD \xD9\x85\xD9\x86...', 'wp content uplo...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/05/15/%D8%B4%D8%A7%D9%87%D8%AF-%D9%87%D8%B0%D9%87-%D8%B1%D8%B3%D8%A7%D8%A6%D9%84-%D8%A7%D9%84%D9%86%D8%A8%D9%8A-%D9%85%D8%AD%D9%85%D8%AF-%D8%A5%D9%84%D9%89-%D9%85%D9%84%D9%88%D9%83-%D8%A7%D9%84%D8%B9/pmtiyu168.com, Stored debug messages: 2023-12-24 21:04:50 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2017/05/15/شاهد-هذه-رسائل-النبي-محمد-إلى-ملوك-الع/pmtiyu168.com 2023-12-24 21:04:50 PST (DEBUG): Processing 404 for URL: /2017/05/15/شاهد-هذه-رسائل-النبي-محمد-إلى-ملوك-الع/pmtiyu168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2017/05/15/شاهد-هذه-رسائل-النبي-محمد-إلى-ملوك-الع/pmtiyu168.com 2023-12-24 21:04:51 PST (DEBUG): No posts or pages matching slug: pmtiyu168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (54.76 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pmtiyu168 com', '2017 05 15 \xD8\xB4\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/05/15/\xD8\xB4\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/05/15/\xD8\xB4\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/06/18/%D8%A8%D8%A7%D9%84%D9%81%D9%8A%D8%AF%D9%8A%D9%88-%D8%AD%D8%B1%D9%83%D8%A9-%D8%B1%D9%88%D9%86%D8%A7%D9%84%D8%AF%D9%88-%D8%A7%D9%84%D8%B5%D8%BA%D9%8A%D8%B1%D8%A9-%D9%81%D9%8A-%D8%A7%D9%84%D9%8A%D9%88/bandaotiyu.ai, Stored debug messages: 2023-12-24 21:05:06 PST (DEBUG): Processing 404 for URL: /2021/06/18/بالفيديو-حركة-رونالدو-الصغيرة-في-اليو/bandaotiyu.ai | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.679mbr07le50, REQUEST_URI: /2021/06/18/بالفيديو-حركة-رونالدو-الصغيرة-في-اليو/bandaotiyu.ai 2023-12-24 21:05:06 PST (DEBUG): No posts or pages matching slug: bandaotiyu.ai 2023-12-24 21:05:46 PST (DEBUG): Slow query (39.43 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'bandaotiyu ai', '2021 06 18 \xD8\xA8\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/06/18/\xD8\xA8\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/06/18/\xD8\xA8\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/05/02/%D8%A7%D9%84%D9%85%D9%88%D9%86%D9%8A%D8%AA%D9%88%D8%B1-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A%D8%A9-%D8%AA%D8%B3/pgdz168.net, Stored debug messages: 2023-12-24 21:05:25 PST (DEBUG): Processing 404 for URL: /2023/05/02/المونيتور-السعودية-تس/pgdz168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.25oi6csbhdg0, REQUEST_URI: /2023/05/02/المونيتور-السعودية-تس/pgdz168.net 2023-12-24 21:05:26 PST (DEBUG): No posts or pages matching slug: pgdz168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (19.8 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pgdz168 net', '2023 05 02 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/05/02/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/05/02/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/05/17/%D8%A7%D9%84%D9%84%D8%A7%D8%AC%D8%A6%D9%88%D9%86-%D8%A7%D9%84%D8%B3%D9%88%D8%B1%D9%8A%D9%88%D9%86-%D8%B9%D9%84%D9%89-%D8%A7%D9%84%D8%AD%D8%AF%D9%88%D8%AF-%D8%A7%D9%84%D8%AC%D8%B2%D8%A7%D8%A6%D8%B1/kaiyuanqp.net, Stored debug messages: 2023-12-24 21:02:49 PST (DEBUG): Processing 404 for URL: /2017/05/17/اللاجئون-السوريون-على-الحدود-الجزائر/kaiyuanqp.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.7cpf47siqss0, REQUEST_URI: /2017/05/17/اللاجئون-السوريون-على-الحدود-الجزائر/kaiyuanqp.net 2023-12-24 21:02:49 PST (DEBUG): No posts or pages matching slug: kaiyuanqp.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (176.35 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyuanqp net', '2017 05 17 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/05/17/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/05/17/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:03:14 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0, REMOTE_ADDR: 5.21.27.1m6phog5rn5o, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:03:15 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (150.84 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/, Requested URL: /wp-content/cache/minify/4386b.css, Stored debug messages: 2023-12-24 21:02:40 PST (DEBUG): Processing 404 for URL: /wp-content/cache/minify/4386b.css | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 13; SAMSUNG SM-A145F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/19.0 Chrome/102.0.5005.125 Mobile Safari/537.36, REMOTE_ADDR: 154.121.36.7gidf4plci10, REQUEST_URI: /wp-content/cache/minify/4386b.css 2023-12-24 21:02:41 PST (DEBUG): No posts or pages matching slug: 4386b.css 2023-12-24 21:05:46 PST (DEBUG): Slow query (184.74 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '4386b css', 'wp content cach...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/cach...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/cach...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/10/10/%D9%85%D9%88%D8%AD%D8%AF-%D8%A7%D9%84%D9%85%D9%85%D9%84%D9%83%D8%A9-%D8%A7%D9%84%D9%85%D9%84%D9%83-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D9%8A%D8%B4%D8%AA%D8%B1%D9%8A-%D9%84%D9%88%D8%AD%D8%A9-%D9%81/agzl.net, Stored debug messages: 2023-12-24 21:02:31 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /2021/10/10/موحد-المملكة-الملك-سلمان-يشتري-لوحة-ف/agzl.net 2023-12-24 21:02:31 PST (DEBUG): Processing 404 for URL: /2021/10/10/موحد-المملكة-الملك-سلمان-يشتري-لوحة-ف/agzl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /2021/10/10/موحد-المملكة-الملك-سلمان-يشتري-لوحة-ف/agzl.net 2023-12-24 21:02:31 PST (DEBUG): No posts or pages matching slug: agzl.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (194.48 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agzl net', '2021 10 10 \xD9\x85\xD9\x88...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/10/10/\xD9\x85\xD9\x88...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/10/10/\xD9\x85\xD9\x88...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/11/30/%D8%AD%D9%82-%D9%85%D8%AD%D9%85%D8%AF-%D8%B6%D9%8A%D8%A7%D8%A1-%D9%87%D9%84-%D9%8A%D8%BA%D8%B7%D9%8A-%D8%A7%D9%84%D9%86%D8%B8%D8%A7%D9%85-%D8%A7%D9%84%D9%85%D8%B5%D8%B1%D9%8A-%D8%B9%D9%84%D9%89/agzr188.com, Stored debug messages: 2023-12-24 21:03:02 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/11/30/حق-محمد-ضياء-هل-يغطي-النظام-المصري-على/agzr188.com 2023-12-24 21:03:02 PST (DEBUG): Processing 404 for URL: /2022/11/30/حق-محمد-ضياء-هل-يغطي-النظام-المصري-على/agzr188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.2eecmeqd33q0, REQUEST_URI: /2022/11/30/حق-محمد-ضياء-هل-يغطي-النظام-المصري-على/agzr188.com 2023-12-24 21:03:03 PST (DEBUG): No posts or pages matching slug: agzr188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (163.11 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agzr188 com', '2022 11 30 \xD8\xAD\xD9\x82...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/11/30/\xD8\xAD\xD9\x82...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/11/30/\xD8\xAD\xD9\x82...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/10/22/%D9%85%D8%B5%D9%85%D9%85-%D8%A3%D9%85%D9%8A%D8%B1%D9%83%D9%8A-%D9%8A%D8%A8%D8%AA%D9%83%D8%B1-%D9%82%D9%81%D9%84-%D9%81%D8%AA%D8%A7%D9%83-%D9%8A%D8%B5%D8%B7%D8%A7%D8%AF-%D8%A8%D9%87-%D8%A7%D9%84%D9%84/pmtiyu168.com, Stored debug messages: 2023-12-24 21:03:37 PST (DEBUG): Processing 404 for URL: /2016/10/22/مصمم-أميركي-يبتكر-قفل-فتاك-يصطاد-به-الل/pmtiyu168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.25oi6csbhdg0, REQUEST_URI: /2016/10/22/مصمم-أميركي-يبتكر-قفل-فتاك-يصطاد-به-الل/pmtiyu168.com 2023-12-24 21:03:38 PST (DEBUG): No posts or pages matching slug: pmtiyu168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (127.89 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pmtiyu168 com', '2016 10 22 \xD9\x85\xD8\xB5...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/10/22/\xD9\x85\xD8\xB5...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/10/22/\xD9\x85\xD8\xB5...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/11/12/%D8%A7%D9%84%D8%B9%D8%AB%D9%88%D8%B1-%D8%B9%D9%84%D9%89-%D8%B3%D9%8A%D8%A7%D8%B1%D8%A7%D8%AA-%D9%81%D8%A7%D8%B1%D9%87%D8%A9-%D9%84%D9%85%D8%B3%D8%A4%D9%88%D9%84%D9%8A-%D9%86%D8%B8%D8%A7%D9%85-%D8%A7/mileyl.net, Stored debug messages: 2023-12-24 21:03:03 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/11/12/العثور-على-سيارات-فارهة-لمسؤولي-نظام-ا/mileyl.net 2023-12-24 21:03:03 PST (DEBUG): Processing 404 for URL: /2022/11/12/العثور-على-سيارات-فارهة-لمسؤولي-نظام-ا/mileyl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.2eecmeqd33q0, REQUEST_URI: /2022/11/12/العثور-على-سيارات-فارهة-لمسؤولي-نظام-ا/mileyl.net 2023-12-24 21:03:04 PST (DEBUG): No posts or pages matching slug: mileyl.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (161.92 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'mileyl net', '2022 11 12 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/11/12/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/11/12/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/01/17/%D9%86%D8%A7%D8%B4%D8%B7%D8%A9-%D9%85%D8%B5%D8%B1%D9%8A%D8%A9-%D9%86%D8%B4%D8%B1-%D8%AD%D8%A8%D9%8A%D8%A8%D9%87%D8%A7-%D9%81%D9%8A%D8%AF%D9%8A%D9%88-%D8%B1%D9%82%D8%B5-%D9%84%D9%87%D8%A7-%D8%AC/pmzr168.com, Stored debug messages: 2023-12-24 21:03:42 PST (DEBUG): Processing 404 for URL: /2017/01/17/ناشطة-مصرية-نشر-حبيبها-فيديو-رقص-لها-ج/pmzr168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.621baderv9f0, REQUEST_URI: /2017/01/17/ناشطة-مصرية-نشر-حبيبها-فيديو-رقص-لها-ج/pmzr168.com 2023-12-24 21:03:43 PST (DEBUG): No posts or pages matching slug: pmzr168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (122.71 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pmzr168 com', '2017 01 17 \xD9\x86\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/01/17/\xD9\x86\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/01/17/\xD9\x86\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2020/08/%D8%B9%D9%84%D9%85-%D8%B3%D9%84%D8%B7%D9%86%D8%A9-%D8%B9%D9%85%D8%A7%D9%86.jpg, Stored debug messages: 2023-12-24 21:03:44 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2020/08/علم-سلطنة-عمان.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Empty User Agent, REMOTE_ADDR: 69.49.230.4fgl8niprpc0, REQUEST_URI: /wp-content/uploads/2020/08/علم-سلطنة-عمان.jpg 2023-12-24 21:03:45 PST (DEBUG): No posts or pages matching slug: علم-سلطنة-عمان.jpg 2023-12-24 21:05:46 PST (DEBUG): Slow query (120.77 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD8\xB9\xD9\x84\xD9\x85 \xD8\xB3\xD9\x84\xD8\xB7\xD9\x86...', 'wp content uplo...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/03/07/%D9%87%D9%84-%D8%AA%D8%BA%D9%8A%D8%B1-%D8%A7%D9%84%D8%AD%D8%B1%D8%A8-%D9%85%D9%88%D8%A7%D8%B2%D9%8A%D9%86-%D8%A7%D9%84%D9%82%D9%88%D9%89%D8%9F-%D8%A7%D9%84%D8%B5%D9%8A%D9%86-%D8%B1%D9%88%D8%B3/kaiyuncn.net, Stored debug messages: 2023-12-24 21:03:08 PST (DEBUG): Processing 404 for URL: /2022/03/07/هل-تغير-الحرب-موازين-القوى؟-الصين-روس/kaiyuncn.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.74r8tnveue40, REQUEST_URI: /2022/03/07/هل-تغير-الحرب-موازين-القوى؟-الصين-روس/kaiyuncn.net 2023-12-24 21:03:08 PST (DEBUG): No posts or pages matching slug: kaiyuncn.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (157.43 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyuncn net', '2022 03 07 \xD9\x87\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/03/07/\xD9\x87\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/03/07/\xD9\x87\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/03/14/%D8%B5%D8%AF%D9%82-%D8%A3%D9%88-%D9%84%D8%A7-%D8%AA%D8%B5%D8%AF%D9%82-%D8%A7%D9%84%D8%B7%D8%A7%D8%A6%D8%B1%D8%A9-%D8%A7%D9%84%D8%A5%D9%85%D8%A7%D8%B1%D8%A7%D8%AA%D9%8A%D8%A9-%D8%B3%D9%82%D8%B7/kaiyuncn.net, Stored debug messages: 2023-12-24 21:02:42 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/03/14/صدق-أو-لا-تصدق-الطائرة-الإماراتية-سقط/kaiyuncn.net 2023-12-24 21:02:42 PST (DEBUG): Processing 404 for URL: /2016/03/14/صدق-أو-لا-تصدق-الطائرة-الإماراتية-سقط/kaiyuncn.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2016/03/14/صدق-أو-لا-تصدق-الطائرة-الإماراتية-سقط/kaiyuncn.net 2023-12-24 21:02:43 PST (DEBUG): No posts or pages matching slug: kaiyuncn.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (183.2 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyuncn net', '2016 03 14 \xD8\xB5\xD8\xAF...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/03/14/\xD8\xB5\xD8\xAF...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/03/14/\xD8\xB5\xD8\xAF...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/09/27/%D8%B3%D9%84%D8%B7%D9%86%D8%A9-%D8%B9%D9%8F%D9%85%D8%A7%D9%86-%D9%85%D8%AD%D8%A7%D9%88%D9%84%D8%A9-%D9%82%D8%AA%D9%84-%D8%A8%D8%B4%D8%B9%D8%A9-%D9%84%D8%B3%D8%A7%D8%A6%D9%82-%D9%85%D9%86-%D9%82/, Stored debug messages: 2023-12-24 21:03:23 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /2023/09/27/سلطنة-عُمان-محاولة-قتل-بشعة-لسائق-من-ق/ 2023-12-24 21:03:23 PST (DEBUG): Processing 404 for URL: /2023/09/27/سلطنة-عُمان-محاولة-قتل-بشعة-لسائق-من-ق/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 87.250.224.5l7ct3qqlp20, REQUEST_URI: /2023/09/27/سلطنة-عُمان-محاولة-قتل-بشعة-لسائق-من-ق/ 2023-12-24 21:03:24 PST (DEBUG): No posts or pages matching slug: سلطنة-عُمان-محاولة-قتل-بشعة-لسائق-من-ق 2023-12-24 21:05:46 PST (DEBUG): Slow query (142.16 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD8\xB3\xD9\x84\xD8\xB7\xD9\x86\xD8\xA9 \xD8\xB9\xD9\x8F...', '2023 09 27 \xD8\xB3\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/09/27/\xD8\xB3\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/09/27/\xD8\xB3\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:02:58 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36, REMOTE_ADDR: 2a01:9700:10e9:1mmpv02ncfo0, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:02:59 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (167.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2015/03/14/%D9%85%D8%AC%D9%84%D8%A9-%D9%81%D9%88%D8%B1%D9%8A%D9%86-%D8%A8%D9%88%D9%84%D9%8A%D8%B3%D9%8A-%D8%AD%D9%84-%D8%A7%D9%84%D8%B3%D9%84%D8%B7%D8%A9-%D8%A7%D9%84%D9%81%D9%84%D8%B3%D8%B7%D9%8A%D9%86%D9%8A/xingcaitiyu.tv, Stored debug messages: 2023-12-24 21:02:20 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2015/03/14/مجلة-فورين-بوليسي-حل-السلطة-الفلسطيني/xingcaitiyu.tv 2023-12-24 21:02:20 PST (DEBUG): Processing 404 for URL: /2015/03/14/مجلة-فورين-بوليسي-حل-السلطة-الفلسطيني/xingcaitiyu.tv | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.1nkt4tg274cg, REQUEST_URI: /2015/03/14/مجلة-فورين-بوليسي-حل-السلطة-الفلسطيني/xingcaitiyu.tv 2023-12-24 21:02:21 PST (DEBUG): No posts or pages matching slug: xingcaitiyu.tv 2023-12-24 21:03:04 PST (DEBUG): Slow query (43.83 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:46 PST (DEBUG): Slow query (161.31 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(555): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('xingcaitiyu tv', '2015 03 14 \xD9\x85\xD8\xAC...', 'tags', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'xingcaitiyu tv', '2015 03 14 \xD9\x85\xD8\xAC...', 'tags') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2015/03/14/\xD9\x85\xD8\xAC...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2015/03/14/\xD9\x85\xD8\xAC...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/07/30/%D8%AA%D8%A7%D9%87%D9%88%D8%A7-%D9%81%D9%8A-%D8%B5%D8%AD%D8%B1%D8%A7%D8%A1-%D9%84%D9%8A%D8%A8%D9%8A%D8%A7-%D8%B4%D8%A7%D9%87%D8%AF-%D9%85%D8%B5%D8%B1%D9%8A%D9%88%D9%86-%D9%8A%D9%84%D9%82%D9%88/kaiyun.work, Stored debug messages: 2023-12-24 21:03:22 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /2018/07/30/تاهوا-في-صحراء-ليبيا-شاهد-مصريون-يلقو/kaiyun.work 2023-12-24 21:03:22 PST (DEBUG): Processing 404 for URL: /2018/07/30/تاهوا-في-صحراء-ليبيا-شاهد-مصريون-يلقو/kaiyun.work | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 5.255.231.1nd4ufot4098, REQUEST_URI: /2018/07/30/تاهوا-في-صحراء-ليبيا-شاهد-مصريون-يلقو/kaiyun.work 2023-12-24 21:03:23 PST (DEBUG): No posts or pages matching slug: kaiyun.work 2023-12-24 21:05:46 PST (DEBUG): Slow query (142.99 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyun work', '2018 07 30 \xD8\xAA\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/07/30/\xD8\xAA\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/07/30/\xD8\xAA\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/09/20/%D8%B4%D8%A7%D9%87%D8%AF-%D8%A5%D9%8A%D8%AD%D8%A7%D8%A1%D8%A7%D8%AA-%D8%AC%D9%86%D8%B3%D9%8A%D8%A9-%D9%88%D8%AD%D8%B0%D9%81-%D9%84%D9%88%D8%A7%D8%A1-%D8%A7%D9%84%D8%A5%D8%B3%D9%83%D9%86%D8%AF%D8%B1/kaiyuanqp.net, Stored debug messages: 2023-12-24 21:02:40 PST (DEBUG): Processing 404 for URL: /2017/09/20/شاهد-إيحاءات-جنسية-وحذف-لواء-الإسكندر/kaiyuanqp.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.69u3s9busol0, REQUEST_URI: /2017/09/20/شاهد-إيحاءات-جنسية-وحذف-لواء-الإسكندر/kaiyuanqp.net 2023-12-24 21:02:41 PST (DEBUG): No posts or pages matching slug: kaiyuanqp.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (184.8 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyuanqp net', '2017 09 20 \xD8\xB4\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/09/20/\xD8\xB4\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/09/20/\xD8\xB4\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:02:45 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36, REMOTE_ADDR: 37.41.43.4g7jki4nua80, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:02:46 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (179.56 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/04/23/%D8%A7%D9%84%D9%81%D9%8A%D9%81%D8%A7-%D9%8A%D9%82%D8%B1%D8%B1-%D8%A5%D8%B9%D8%A7%D8%AF%D8%A9-%D9%85%D8%A8%D8%A7%D8%B1%D8%A7%D8%A9-%D9%81%D9%8A-%D8%AA%D8%B5%D9%81%D9%8A%D8%A7%D8%AA-%D9%85%D9%88/shaba188.net, Stored debug messages: 2023-12-24 21:02:56 PST (DEBUG): Processing 404 for URL: /2022/04/23/الفيفا-يقرر-إعادة-مباراة-في-تصفيات-مو/shaba188.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.mf44homk8200, REQUEST_URI: /2022/04/23/الفيفا-يقرر-إعادة-مباراة-في-تصفيات-مو/shaba188.net 2023-12-24 21:02:56 PST (DEBUG): No posts or pages matching slug: shaba188.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (169.52 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'shaba188 net', '2022 04 23 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/04/23/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/04/23/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/01/02/%D8%AE%D9%81%D9%91%D9%88%D8%A7-%D8%B9%D9%84%D9%8A%D9%86%D8%A7-%D8%B4%D9%88%D9%8A%D8%A9-%D9%8A%D9%88%D8%B3%D9%81-%D8%A7%D9%84%D8%AD%D8%B3%D9%8A%D9%86%D9%8A-%D9%8A%D8%A8%D9%83%D9%8A-%D8%B9%D9%84/ag-zunlongkaishi.net, Stored debug messages: 2023-12-24 21:03:20 PST (DEBUG): Processing 404 for URL: /2017/01/02/خفّوا-علينا-شوية-يوسف-الحسيني-يبكي-عل/ag-zunlongkaishi.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html), REMOTE_ADDR: 85.208.96.93lc4vjmj060, REQUEST_URI: /2017/01/02/خفّوا-علينا-شوية-يوسف-الحسيني-يبكي-عل/ag-zunlongkaishi.net 2023-12-24 21:03:21 PST (DEBUG): No posts or pages matching slug: ag-zunlongkaishi.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (144.69 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'ag zunlongkaish...', '2017 01 02 \xD8\xAE\xD9\x81...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/01/02/\xD8\xAE\xD9\x81...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/01/02/\xD8\xAE\xD9\x81...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/01/14/%D8%A7%D9%84%D8%B1%D8%A7%D9%82%D8%B5%D8%A9-%D8%B3%D9%85%D8%A7-%D8%A7%D9%84%D9%85%D8%B5%D8%B1%D9%8A-%D8%B4%D8%B9%D8%A8-%D9%85%D8%B5%D8%B1-%D8%A7%D9%84%D8%B9%D8%B8%D9%8A%D9%85-%D8%A3%D8%B9%D9%84/agzl168.com, Stored debug messages: 2023-12-24 21:05:34 PST (DEBUG): Processing 404 for URL: /2018/01/14/الراقصة-سما-المصري-شعب-مصر-العظيم-أعل/agzl168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.5amchoi8lso0, REQUEST_URI: /2018/01/14/الراقصة-سما-المصري-شعب-مصر-العظيم-أعل/agzl168.com 2023-12-24 21:05:35 PST (DEBUG): No posts or pages matching slug: agzl168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (11.26 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agzl168 com', '2018 01 14 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/01/14/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/01/14/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/05/11/%D9%85%D8%B3%D8%A4%D9%88%D9%84-%D8%A8%D9%80%D8%A7%D9%84%D8%AA%D8%AD%D8%A7%D9%84%D9%81-%D8%A7%D9%84%D8%AF%D9%88%D9%84%D9%8A-%D8%A7%D9%84%D8%A3%D8%B3%D8%AF-%D8%AE%D8%B3%D9%90%D8%B1%D9%8E-%D9%87/bandaotiyu.ai, Stored debug messages: 2023-12-24 21:03:39 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/05/11/مسؤول-بـالتحالف-الدولي-الأسد-خسِرَ-ه/bandaotiyu.ai 2023-12-24 21:03:39 PST (DEBUG): Processing 404 for URL: /2016/05/11/مسؤول-بـالتحالف-الدولي-الأسد-خسِرَ-ه/bandaotiyu.ai | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.2eecmeqd33q0, REQUEST_URI: /2016/05/11/مسؤول-بـالتحالف-الدولي-الأسد-خسِرَ-ه/bandaotiyu.ai 2023-12-24 21:03:40 PST (DEBUG): No posts or pages matching slug: bandaotiyu.ai 2023-12-24 21:05:46 PST (DEBUG): Slow query (125.92 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'bandaotiyu ai', '2016 05 11 \xD9\x85\xD8\xB3...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/05/11/\xD9\x85\xD8\xB3...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/05/11/\xD9\x85\xD8\xB3...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/02/07/%D8%AD%D9%84%D9%8A%D9%85%D8%A9-%D8%A8%D9%88%D9%84%D9%86%D8%AF-%D8%AA%D9%8F%D8%B7%D8%A7%D9%84%D8%A8-%D8%A8%D8%AA%D8%A8%D9%86%D9%8A-%D9%87%D8%B0%D8%A7-%D8%A7%D9%84%D8%B7%D9%81%D9%84-%D8%A7%D9%84%D8%B3/aiyouxi.one, Stored debug messages: 2023-12-24 21:03:45 PST (DEBUG): Processing 404 for URL: /2023/02/07/حليمة-بولند-تُطالب-بتبني-هذا-الطفل-الس/aiyouxi.one | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.25oi6csbhdg0, REQUEST_URI: /2023/02/07/حليمة-بولند-تُطالب-بتبني-هذا-الطفل-الس/aiyouxi.one 2023-12-24 21:03:46 PST (DEBUG): No posts or pages matching slug: aiyouxi.one 2023-12-24 21:05:46 PST (DEBUG): Slow query (120 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'aiyouxi one', '2023 02 07 \xD8\xAD\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/02/07/\xD8\xAD\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/02/07/\xD8\xAD\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/02/14/%D9%84%D9%87%D8%B0%D9%87-%D8%A7%D9%84%D8%A3%D8%B3%D8%A8%D8%A7%D8%A8-%D9%81%D8%A7%D8%B2-%D8%A7%D9%84%D9%82%D8%A7%D8%AF%D8%A9-%D8%A7%D9%84%D8%B9%D8%B3%D9%83%D8%B1%D9%8A%D9%88%D9%86-%D9%81%D9%8A-%D8%A7/aiyouxi168.net, Stored debug messages: 2023-12-24 21:03:14 PST (DEBUG): Processing 404 for URL: /2017/02/14/لهذه-الأسباب-فاز-القادة-العسكريون-في-ا/aiyouxi168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.5amchoi8lso0, REQUEST_URI: /2017/02/14/لهذه-الأسباب-فاز-القادة-العسكريون-في-ا/aiyouxi168.net 2023-12-24 21:03:15 PST (DEBUG): No posts or pages matching slug: aiyouxi168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (150.82 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'aiyouxi168 net', '2017 02 14 \xD9\x84\xD9\x87...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/02/14/\xD9\x84\xD9\x87...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/02/14/\xD9\x84\xD9\x87...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/11/09/%D9%85%D8%A7-%D9%81%D8%B9%D9%84%D8%AA%D9%87-%D8%A7%D9%84%D9%83%D9%84%D8%A7%D8%A8-%D8%A7%D9%84%D8%B6%D8%A7%D9%84%D8%A9-%D8%A8%D8%B7%D9%81%D9%84-%D8%B9%D9%85%D8%A7%D9%86%D9%8A-%D9%84%D8%A7-%D9%8A%D8%B5/kaifayl.com%22, Stored debug messages: 2023-12-24 21:04:32 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/11/09/ما-فعلته-الكلاب-الضالة-بطفل-عماني-لا-يص/kaifayl.com 2023-12-24 21:04:32 PST (DEBUG): Processing 404 for URL: /2022/11/09/ما-فعلته-الكلاب-الضالة-بطفل-عماني-لا-يص/kaifayl.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2022/11/09/ما-فعلته-الكلاب-الضالة-بطفل-عماني-لا-يص/kaifayl.com" 2023-12-24 21:04:33 PST (DEBUG): No posts or pages matching slug: kaifayl.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (72.52 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaifayl com', '2022 11 09 \xD9\x85\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/11/09/\xD9\x85\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/11/09/\xD9\x85\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/10/16/%D8%A7%D9%84%D8%AD%D9%84-%D9%85%D8%B9-%D8%A7%D9%84%D8%B9%D8%B1%D8%A8-%D9%88%D8%A7%D9%84%D9%85%D8%B3%D9%84%D9%85%D9%8A%D9%86-%D9%87%D9%88-%D9%82%D8%B5%D9%81%D9%87%D9%85-%D9%88%D8%A5%D8%A8%D8%A7%D8%AF/aiyouxi168.net, Stored debug messages: 2023-12-24 21:02:34 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2017/10/16/الحل-مع-العرب-والمسلمين-هو-قصفهم-وإباد/aiyouxi168.net 2023-12-24 21:02:34 PST (DEBUG): Processing 404 for URL: /2017/10/16/الحل-مع-العرب-والمسلمين-هو-قصفهم-وإباد/aiyouxi168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2017/10/16/الحل-مع-العرب-والمسلمين-هو-قصفهم-وإباد/aiyouxi168.net 2023-12-24 21:02:34 PST (DEBUG): No posts or pages matching slug: aiyouxi168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (191.59 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'aiyouxi168 net', '2017 10 16 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/10/16/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/10/16/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/10/29/%D9%85%D8%BA%D8%A7%D8%B1%D8%A8%D8%A9-%D8%BA%D8%A7%D8%B6%D8%A8%D9%88%D9%86-%D9%8A%D8%AD%D8%AA%D8%AC%D9%88%D9%86-%D8%A8%D8%B9%D8%AF-%D8%A3%D9%86-%D8%B7%D8%AD%D9%86%D8%AA-%D8%B4%D8%A7%D8%AD%D9%86%D8%A9/kokty168.com, Stored debug messages: 2023-12-24 21:04:47 PST (DEBUG): Processing 404 for URL: /2016/10/29/مغاربة-غاضبون-يحتجون-بعد-أن-طحنت-شاحنة/kokty168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4ruce7vs32i0, REQUEST_URI: /2016/10/29/مغاربة-غاضبون-يحتجون-بعد-أن-طحنت-شاحنة/kokty168.com 2023-12-24 21:04:48 PST (DEBUG): No posts or pages matching slug: kokty168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (57.62 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kokty168 com', '2016 10 29 \xD9\x85\xD8\xBA...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/10/29/\xD9\x85\xD8\xBA...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/10/29/\xD9\x85\xD8\xBA...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/, Requested URL: /wp-content/cache/minify/9f8f7.css, Stored debug messages: 2023-12-24 21:02:58 PST (DEBUG): Processing 404 for URL: /wp-content/cache/minify/9f8f7.css | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.82, REMOTE_ADDR: 151.253.147.655sdtcr61k0, REQUEST_URI: /wp-content/cache/minify/9f8f7.css 2023-12-24 21:02:59 PST (DEBUG): No posts or pages matching slug: 9f8f7.css 2023-12-24 21:05:46 PST (DEBUG): Slow query (166.85 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '9f8f7 css', 'wp content cach...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/cach...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/cach...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/, Requested URL: /wp-content/cache/minify/1615d.js, Stored debug messages: 2023-12-24 21:04:23 PST (DEBUG): Processing 404 for URL: /wp-content/cache/minify/1615d.js | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 13; SAMSUNG SM-A145F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/19.0 Chrome/102.0.5005.125 Mobile Safari/537.36, REMOTE_ADDR: 154.121.36.7gidf4plci10, REQUEST_URI: /wp-content/cache/minify/1615d.js 2023-12-24 21:04:24 PST (DEBUG): No posts or pages matching slug: 1615d.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (82.26 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '1615d js', 'wp content cach...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/cach...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/cach...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tag/%D9%87%D9%8A%D8%A6%D8%A7%D8%AA-%D8%AF%D9%8A%D9%86%D9%8A%D8%A9/, Stored debug messages: 2023-12-24 21:03:31 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /tag/هيئات-دينية/ 2023-12-24 21:03:31 PST (DEBUG): Processing 404 for URL: /tag/هيئات-دينية/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 213.180.203.6pqjq9bq3lk0, REQUEST_URI: /tag/هيئات-دينية/ 2023-12-24 21:03:32 PST (DEBUG): No posts or pages matching slug: هيئات-دينية 2023-12-24 21:05:46 PST (DEBUG): Slow query (134.08 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD9\x87\xD9\x8A\xD8\xA6\xD8\xA7\xD8\xAA \xD8\xAF\xD9\x8A...', 'tag \xD9\x87\xD9\x8A\xD8\xA6\xD8\xA7\xD8\xAA ...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tag/\xD9\x87\xD9\x8A\xD8\xA6\xD8\xA7\xD8\xAA-...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tag/\xD9\x87\xD9\x8A\xD8\xA6\xD8\xA7\xD8\xAA-...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tag/%D9%85%D9%83%D8%A7%D9%81%D8%A3%D8%A9/tbtiyu188.org, Stored debug messages: 2023-12-24 21:02:21 PST (DEBUG): Processing 404 for URL: /tag/مكافأة/tbtiyu188.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.653ji11g94k0, REQUEST_URI: /tag/مكافأة/tbtiyu188.org 2023-12-24 21:02:22 PST (DEBUG): No posts or pages matching slug: tbtiyu188.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (204.13 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'tbtiyu188 org', 'tag \xD9\x85\xD9\x83\xD8\xA7\xD9\x81\xD8\xA3\xD8...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tag/\xD9\x85\xD9\x83\xD8\xA7\xD9\x81\xD8\xA3\xD8...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tag/\xD9\x85\xD9\x83\xD8\xA7\xD9\x81\xD8\xA3\xD8...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/05/06/%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A%D8%A9-%D8%AA%D9%86%D9%82%D9%84%D8%A8-%D8%B9%D9%84%D9%89-%D8%B3%D8%B9%D8%AF-%D8%A7%D9%84%D8%AD%D8%B1%D9%8A%D8%B1%D9%8A-%D9%85%D9%86-%D8%A8%D8%A7%D8%B9/kokty168.com, Stored debug messages: 2023-12-24 21:04:21 PST (DEBUG): Processing 404 for URL: /2022/05/06/السعودية-تنقلب-على-سعد-الحريري-من-باع/kokty168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.5amchoi8lso0, REQUEST_URI: /2022/05/06/السعودية-تنقلب-على-سعد-الحريري-من-باع/kokty168.com 2023-12-24 21:04:22 PST (DEBUG): No posts or pages matching slug: kokty168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (83.67 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kokty168 com', '2022 05 06 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/05/06/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/05/06/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:05:00 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (iPhone; CPU iPhone OS 17_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Mobile/15E148 Safari/604.1, REMOTE_ADDR: 2601:243:2480:5o9onhcuqeh0, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:05:01 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (44.4 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/03/10/%D9%84%D9%85%D8%A7%D8%B0%D8%A7-%D8%AA%D9%86%D9%81%D8%B0-%D8%AF%D9%88%D9%84-%D8%A7%D9%84%D8%AE%D9%84%D9%8A%D8%AC-%D9%88%D8%A7%D9%84%D8%A3%D8%B1%D8%AF%D9%86-%D8%A3%D8%AD%D9%83%D8%A7%D9%85%D8%A7%D9%8B/leyutiyu.co, Stored debug messages: 2023-12-24 21:02:30 PST (DEBUG): Processing 404 for URL: /2017/03/10/لماذا-تنفذ-دول-الخليج-والأردن-أحكاماً/leyutiyu.co | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4f2ji5vjna30, REQUEST_URI: /2017/03/10/لماذا-تنفذ-دول-الخليج-والأردن-أحكاماً/leyutiyu.co 2023-12-24 21:02:31 PST (DEBUG): No posts or pages matching slug: leyutiyu.co 2023-12-24 21:05:46 PST (DEBUG): Slow query (194.85 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'leyutiyu co', '2017 03 10 \xD9\x84\xD9\x85...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/03/10/\xD9\x84\xD9\x85...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/03/10/\xD9\x84\xD9\x85...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/07/08/%D8%AD%D8%A7%D8%AF%D8%AB-%D8%A7%D9%84%D8%B4%D9%8A%D8%B1%D8%A7%D8%AA%D9%88%D9%86-%D8%B5%D9%88%D8%B1-%D8%A3%D8%B3%D8%B1%D8%A9-%D9%85%D8%B5%D8%B1%D9%8A%D8%A9-%D9%83%D8%AA%D8%A8-%D8%B4%D8%A7%D8%A8/tbtiyu188.org, Stored debug messages: 2023-12-24 21:05:06 PST (DEBUG): Processing 404 for URL: /2023/07/08/حادث-الشيراتون-صور-أسرة-مصرية-كتب-شاب/tbtiyu188.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.653ji11g94k0, REQUEST_URI: /2023/07/08/حادث-الشيراتون-صور-أسرة-مصرية-كتب-شاب/tbtiyu188.org 2023-12-24 21:05:07 PST (DEBUG): No posts or pages matching slug: tbtiyu188.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (38.63 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'tbtiyu188 org', '2023 07 08 \xD8\xAD\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/07/08/\xD8\xAD\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/07/08/\xD8\xAD\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/04/03/%D8%B1%D9%87%D9%81-%D8%A7%D9%84%D9%82%D8%AD%D8%B7%D8%A7%D9%86%D9%8A-%D8%AA%D8%BA%D8%B1%D9%8A-%D9%88%D8%A7%D9%84%D8%AF%D8%AA%D9%87%D8%A7-%D9%84%D8%AA%D9%82%D8%A8%D9%84-%D9%87%D8%B0%D8%A7-%D8%A7%D9%84/pmtiyu.org, Stored debug messages: 2023-12-24 21:02:58 PST (DEBUG): Processing 404 for URL: /2023/04/03/رهف-القحطاني-تغري-والدتها-لتقبل-هذا-ال/pmtiyu.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.74r8tnveue40, REQUEST_URI: /2023/04/03/رهف-القحطاني-تغري-والدتها-لتقبل-هذا-ال/pmtiyu.org 2023-12-24 21:02:59 PST (DEBUG): No posts or pages matching slug: pmtiyu.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (166.53 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pmtiyu org', '2023 04 03 \xD8\xB1\xD9\x87...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/04/03/\xD8\xB1\xD9\x87...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/04/03/\xD8\xB1\xD9\x87...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2015/10/22/%D9%87%D9%83%D8%B0%D8%A7-%D8%B1%D8%AF-%D8%B9%D8%A8%D8%AF%D8%A7%D9%84%D9%84%D9%87%D9%8A%D8%A7%D9%86-%D8%B9%D9%84%D9%89-%D8%AA%D8%B5%D8%B1%D9%8A%D8%AD-%D8%A7%D9%84%D8%AC%D8%A8%D9%8A%D8%B1-%D8%A8/bdtiyu168.com, Stored debug messages: 2023-12-24 21:02:49 PST (DEBUG): Processing 404 for URL: /2015/10/22/هكذا-رد-عبداللهيان-على-تصريح-الجبير-ب/bdtiyu168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.69u3s9busol0, REQUEST_URI: /2015/10/22/هكذا-رد-عبداللهيان-على-تصريح-الجبير-ب/bdtiyu168.com 2023-12-24 21:02:50 PST (DEBUG): No posts or pages matching slug: bdtiyu168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (175.68 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'bdtiyu168 com', '2015 10 22 \xD9\x87\xD9\x83...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2015/10/22/\xD9\x87\xD9\x83...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2015/10/22/\xD9\x87\xD9\x83...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/04/22/%D9%81%D9%8A%D8%AF%D9%8A%D9%88-%D9%86%D9%82%D8%A7%D8%A8-%D8%B1%D8%A4%D9%8A%D8%A9-2030-%D8%B9%D9%84%D9%89-%D9%88%D8%AC%D9%87-%D8%A3%D9%85%D9%8A%D8%B1%D8%A9-%D9%85%D9%86-%D8%A2%D9%84-%D8%B3%D8%B9/agzl.net, Stored debug messages: 2023-12-24 21:02:58 PST (DEBUG): Processing 404 for URL: /2019/04/22/فيديو-نقاب-رؤية-2030-على-وجه-أميرة-من-آل-سع/agzl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.mf44homk8200, REQUEST_URI: /2019/04/22/فيديو-نقاب-رؤية-2030-على-وجه-أميرة-من-آل-سع/agzl.net 2023-12-24 21:02:58 PST (DEBUG): No posts or pages matching slug: agzl.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (167.41 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agzl net', '2019 04 22 \xD9\x81\xD9\x8A...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/04/22/\xD9\x81\xD9\x8A...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/04/22/\xD9\x81\xD9\x8A...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/07/05/%D8%A8%D9%86%D9%83-%D8%B9%D9%85%D8%A7%D9%86-%D8%A7%D9%84%D8%B9%D8%B1%D8%A8%D9%8A-%D9%8A%D9%83%D8%B4%D9%81-%D8%AA%D8%B7%D9%88%D8%B1%D8%A7%D8%AA-%D8%A7%D8%AE%D8%AA%D9%84%D8%A7%D8%B3-6-%D9%85%D9%84%D8%A7/pmtiyu168.com, Stored debug messages: 2023-12-24 21:04:43 PST (DEBUG): Processing 404 for URL: /2021/07/05/بنك-عمان-العربي-يكشف-تطورات-اختلاس-6-ملا/pmtiyu168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.25oi6csbhdg0, REQUEST_URI: /2021/07/05/بنك-عمان-العربي-يكشف-تطورات-اختلاس-6-ملا/pmtiyu168.com 2023-12-24 21:04:44 PST (DEBUG): No posts or pages matching slug: pmtiyu168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (62.13 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pmtiyu168 com', '2021 07 05 \xD8\xA8\xD9\x86...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/07/05/\xD8\xA8\xD9\x86...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/07/05/\xD8\xA8\xD9\x86...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/08/02/%D8%B3%D8%B9%D8%B1-%D8%A7%D9%84%D8%B0%D9%87%D8%A8-%D9%81%D9%8A-%D8%B3%D9%84%D8%B7%D9%86%D8%A9-%D8%B9%D9%85%D8%A7%D9%86-%D8%A7%D9%84%D9%8A%D9%88%D9%85-%D8%A7%D9%84%D8%A3%D8%B1%D8%A8%D8%B9%D8%A7%D8%A1-9/fbty168.net, Stored debug messages: 2023-12-24 21:03:44 PST (DEBUG): Processing 404 for URL: /2022/08/02/سعر-الذهب-في-سلطنة-عمان-اليوم-الأربعاء-9/fbty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.v1ouqr6cggc0, REQUEST_URI: /2022/08/02/سعر-الذهب-في-سلطنة-عمان-اليوم-الأربعاء-9/fbty168.net 2023-12-24 21:03:45 PST (DEBUG): No posts or pages matching slug: fbty168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (120.53 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'fbty168 net', '2022 08 02 \xD8\xB3\xD8\xB9...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/08/02/\xD8\xB3\xD8\xB9...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/08/02/\xD8\xB3\xD8\xB9...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/04/21/%D8%B4%D8%A7%D9%87%D8%AF-%D8%AA%D8%BA%D8%B1%D9%8A%D8%AF%D8%A9-%D8%AA%D8%B1%D8%A7%D9%85%D8%A8-%D8%A7%D9%84%D9%85%D8%AD%D8%B0%D9%88%D9%81%D8%A9-%D8%B9%D9%86-%D8%AA%D9%81%D8%AC%D9%8A%D8%B1%D8%A7/kaiyuanqp.net, Stored debug messages: 2023-12-24 21:05:24 PST (DEBUG): Processing 404 for URL: /2019/04/21/شاهد-تغريدة-ترامب-المحذوفة-عن-تفجيرا/kaiyuanqp.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.6jr526g0l480, REQUEST_URI: /2019/04/21/شاهد-تغريدة-ترامب-المحذوفة-عن-تفجيرا/kaiyuanqp.net 2023-12-24 21:05:25 PST (DEBUG): No posts or pages matching slug: kaiyuanqp.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (20.82 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyuanqp net', '2019 04 21 \xD8\xB4\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/04/21/\xD8\xB4\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/04/21/\xD8\xB4\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tag/%D9%88%D8%B2%D9%8A%D8%B1-%D8%AE%D8%A7%D8%B1%D8%AC%D9%8A%D8%A9-%D8%AA%D8%B1%D9%83%D9%8A%D8%A7/agbjl168.com, Stored debug messages: 2023-12-24 21:03:04 PST (DEBUG): Processing 404 for URL: /tag/وزير-خارجية-تركيا/agbjl168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.5amchoi8lso0, REQUEST_URI: /tag/وزير-خارجية-تركيا/agbjl168.com 2023-12-24 21:03:05 PST (DEBUG): No posts or pages matching slug: agbjl168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (160.89 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agbjl168 com', 'tag \xD9\x88\xD8\xB2\xD9\x8A\xD8\xB1 \xD8\xAE...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tag/\xD9\x88\xD8\xB2\xD9\x8A\xD8\xB1-\xD8\xAE...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tag/\xD9\x88\xD8\xB2\xD9\x8A\xD8\xB1-\xD8\xAE...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/04/28/%D9%8A%D8%B9%D9%85%D9%84-%D9%84%D8%B5%D8%A7%D9%84%D8%AD-%D9%85%D8%AE%D8%A7%D8%A8%D8%B1%D8%A7%D8%AA-%D8%A7%D9%84%D8%B3%D9%84%D8%B7%D8%A9-%D8%AD%D9%85%D8%A7%D8%B3-%D8%AA%D9%81%D8%AC%D8%B1-%D9%85/huatihui188.com, Stored debug messages: 2023-12-24 21:04:15 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/04/28/يعمل-لصالح-مخابرات-السلطة-حماس-تفجر-م/huatihui188.com 2023-12-24 21:04:15 PST (DEBUG): Processing 404 for URL: /2018/04/28/يعمل-لصالح-مخابرات-السلطة-حماس-تفجر-م/huatihui188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2018/04/28/يعمل-لصالح-مخابرات-السلطة-حماس-تفجر-م/huatihui188.com 2023-12-24 21:04:16 PST (DEBUG): No posts or pages matching slug: huatihui188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (89.69 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'huatihui188 com', '2018 04 28 \xD9\x8A\xD8\xB9...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/04/28/\xD9\x8A\xD8\xB9...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/04/28/\xD9\x8A\xD8\xB9...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2020/01/ENcVPFcWoAApcgq-747x1024.jpg, Stored debug messages: 2023-12-24 21:03:22 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2020/01/ENcVPFcWoAApcgq-747x1024.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Empty User Agent, REMOTE_ADDR: 2a01:4f9:3080:7grl59jut610, REQUEST_URI: /wp-content/uploads/2020/01/ENcVPFcWoAApcgq-747x1024.jpg 2023-12-24 21:03:23 PST (DEBUG): No posts or pages matching slug: ENcVPFcWoAApcgq-747x1024.jpg 2023-12-24 21:05:46 PST (DEBUG): Slow query (142.73 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'ENcVPFcWoAApcgq...', 'wp content uplo...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/08/27/%D9%87%D8%A8%D8%A9-%D9%86%D9%88%D8%B1-%D8%AA%D8%B1%D9%82%D8%B5-%D9%88%D8%B3%D8%B7-%D8%A3%D8%B5%D8%AF%D9%82%D8%A7%D8%A6%D9%87%D8%A7-%D8%A7%D9%84%D8%B1%D8%AC%D8%A7%D9%84-%D8%A8%D9%81%D8%B3%D8%AA%D8%A7/fbty168.net, Stored debug messages: 2023-12-24 21:04:49 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/08/27/هبة-نور-ترقص-وسط-أصدقائها-الرجال-بفستا/fbty168.net 2023-12-24 21:04:49 PST (DEBUG): Processing 404 for URL: /2023/08/27/هبة-نور-ترقص-وسط-أصدقائها-الرجال-بفستا/fbty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2023/08/27/هبة-نور-ترقص-وسط-أصدقائها-الرجال-بفستا/fbty168.net 2023-12-24 21:04:50 PST (DEBUG): No posts or pages matching slug: fbty168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (56.12 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'fbty168 net', '2023 08 27 \xD9\x87\xD8\xA8...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/08/27/\xD9\x87\xD8\xA8...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/08/27/\xD9\x87\xD8\xA8...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/12/15/%D8%B9%D9%84%D8%A7%D9%82%D8%A9-%D9%85%D9%84%D9%83-%D8%A7%D9%84%D9%85%D8%BA%D8%B1%D8%A8-%D9%85%D8%AD%D9%85%D8%AF-%D8%A7%D9%84%D8%B3%D8%A7%D8%AF%D8%B3-%D9%88%D8%A7%D9%84%D8%A5%D8%AE%D9%88%D8%A9-%D8%B2/agbjl.org, Stored debug messages: 2023-12-24 21:03:05 PST (DEBUG): Processing 404 for URL: /2021/12/15/علاقة-ملك-المغرب-محمد-السادس-والإخوة-ز/agbjl.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.6jr526g0l480, REQUEST_URI: /2021/12/15/علاقة-ملك-المغرب-محمد-السادس-والإخوة-ز/agbjl.org 2023-12-24 21:03:06 PST (DEBUG): No posts or pages matching slug: agbjl.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (159.78 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agbjl org', '2021 12 15 \xD8\xB9\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/12/15/\xD8\xB9\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/12/15/\xD8\xB9\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/09/28/%D8%A7%D9%84%D9%82%D9%86%D8%A7%D8%A9-%D8%A7%D9%84%D8%A5%D8%B3%D8%B1%D8%A7%D8%A6%D9%8A%D9%84%D9%8A%D8%A9-%D8%A7%D9%84%D8%AB%D8%A7%D9%86%D9%8A%D8%A9-%D8%A3%D8%AE%D9%8A%D8%B1%D8%A7-%D8%A7%D9%84%D9%86/pgdz168.com, Stored debug messages: 2023-12-24 21:05:03 PST (DEBUG): Processing 404 for URL: /2017/09/28/القناة-الإسرائيلية-الثانية-أخيرا-الن/pgdz168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.mf44homk8200, REQUEST_URI: /2017/09/28/القناة-الإسرائيلية-الثانية-أخيرا-الن/pgdz168.com 2023-12-24 21:05:04 PST (DEBUG): No posts or pages matching slug: pgdz168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (41.79 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pgdz168 com', '2017 09 28 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/09/28/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/09/28/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/07/24/%D9%87%D8%B0%D9%87-%D8%AD%D9%82%D9%8A%D9%82%D8%A9-%D8%B3%D8%AD%D8%A8-%D8%AC%D9%86%D8%B3%D9%8A%D8%A9-%D8%A7%D9%84%D9%85%D8%AA%D8%B5%D9%87%D9%8A%D9%86-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D9%85/oubao168.org, Stored debug messages: 2023-12-24 21:03:03 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2019/07/24/هذه-حقيقة-سحب-جنسية-المتصهين-السعودي-م/oubao168.org 2023-12-24 21:03:03 PST (DEBUG): Processing 404 for URL: /2019/07/24/هذه-حقيقة-سحب-جنسية-المتصهين-السعودي-م/oubao168.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.2eecmeqd33q0, REQUEST_URI: /2019/07/24/هذه-حقيقة-سحب-جنسية-المتصهين-السعودي-م/oubao168.org 2023-12-24 21:03:03 PST (DEBUG): No posts or pages matching slug: oubao168.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (162.31 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'oubao168 org', '2019 07 24 \xD9\x87\xD8\xB0...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/07/24/\xD9\x87\xD8\xB0...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/07/24/\xD9\x87\xD8\xB0...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/04/18/%D9%85%D8%A7%D8%B0%D8%A7-%D9%81%D8%B9%D9%84-%D8%A3%D9%87%D8%A7%D9%84%D9%8A-%D9%85%D8%B9%D8%AA%D9%82%D9%84%D9%8A-%D8%A7%D9%84%D8%B1%D8%A3%D9%8A-%D8%A8%D8%A7%D9%84%D8%A8%D8%AD%D8%B1%D9%8A%D9%86/bandaotiyu.ai, Stored debug messages: 2023-12-24 21:03:15 PST (DEBUG): Processing 404 for URL: /2021/04/18/ماذا-فعل-أهالي-معتقلي-الرأي-بالبحرين/bandaotiyu.ai | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.58fvr7j8njt0, REQUEST_URI: /2021/04/18/ماذا-فعل-أهالي-معتقلي-الرأي-بالبحرين/bandaotiyu.ai 2023-12-24 21:03:16 PST (DEBUG): No posts or pages matching slug: bandaotiyu.ai 2023-12-24 21:05:46 PST (DEBUG): Slow query (150.07 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'bandaotiyu ai', '2021 04 18 \xD9\x85\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/04/18/\xD9\x85\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/04/18/\xD9\x85\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tag/%D9%82%D8%B5%D9%81-%D8%A5%D8%B3%D8%B1%D8%A7%D8%A6%D9%8A%D9%84%D9%8A/leyutiy.net, Stored debug messages: 2023-12-24 21:04:00 PST (DEBUG): Processing 404 for URL: /tag/قصف-إسرائيلي/leyutiy.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.621baderv9f0, REQUEST_URI: /tag/قصف-إسرائيلي/leyutiy.net 2023-12-24 21:04:01 PST (DEBUG): No posts or pages matching slug: leyutiy.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (104.54 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'leyutiy net', 'tag \xD9\x82\xD8\xB5\xD9\x81 \xD8\xA5\xD8\xB3...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tag/\xD9\x82\xD8\xB5\xD9\x81-\xD8\xA5\xD8\xB3...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tag/\xD9\x82\xD8\xB5\xD9\x81-\xD8\xA5\xD8\xB3...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:02:53 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36, REMOTE_ADDR: 31.14.75.6jr526g0l480, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:02:53 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (172.4 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/06/30/%D8%B3%D8%A8%D8%A8-%D9%88%D9%81%D8%A7%D8%A9-%D8%A7%D9%84%D9%85%D8%AE%D8%B1%D8%AC-%D8%A5%D9%8A%D9%87%D8%A7%D8%A8-%D8%A3%D8%A8%D9%88-%D8%B2%D9%8A%D8%AF-%D8%A2%D8%AE%D8%B1-%D9%83%D9%84%D9%85%D8%A7/leyutiy.net, Stored debug messages: 2023-12-24 21:02:39 PST (DEBUG): Processing 404 for URL: /2023/06/30/سبب-وفاة-المخرج-إيهاب-أبو-زيد-آخر-كلما/leyutiy.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.5amchoi8lso0, REQUEST_URI: /2023/06/30/سبب-وفاة-المخرج-إيهاب-أبو-زيد-آخر-كلما/leyutiy.net 2023-12-24 21:02:40 PST (DEBUG): No posts or pages matching slug: leyutiy.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (186.15 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'leyutiy net', '2023 06 30 \xD8\xB3\xD8\xA8...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/06/30/\xD8\xB3\xD8\xA8...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/06/30/\xD8\xB3\xD8\xA8...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/01/16/%D8%B4%D9%8A%D9%85%D8%A7%D8%A1-%D8%B3%D9%8A%D9%81-%D8%AA%D8%AE%D8%B1%D8%AC-%D8%A5%D9%85%D9%83%D8%A7%D9%86%D9%8A%D8%A7%D8%AA%D9%87%D8%A7-%D8%A7%D9%84%D9%85%D8%AF%D9%81%D9%88%D9%86%D8%A9-%D9%81%D9%8A/kaiyuncn.net, Stored debug messages: 2023-12-24 21:05:17 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/01/16/شيماء-سيف-تخرج-إمكانياتها-المدفونة-في/kaiyuncn.net 2023-12-24 21:05:18 PST (DEBUG): Processing 404 for URL: /2021/01/16/شيماء-سيف-تخرج-إمكانياتها-المدفونة-في/kaiyuncn.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.55esdst4v200, REQUEST_URI: /2021/01/16/شيماء-سيف-تخرج-إمكانياتها-المدفونة-في/kaiyuncn.net 2023-12-24 21:05:18 PST (DEBUG): No posts or pages matching slug: kaiyuncn.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (27.32 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyuncn net', '2021 01 16 \xD8\xB4\xD9\x8A...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/01/16/\xD8\xB4\xD9\x8A...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/01/16/\xD8\xB4\xD9\x8A...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.19, Requested URL: /superpwa-sw.js?2.2.19, Stored debug messages: 2023-12-24 21:04:12 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_19= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36, REMOTE_ADDR: 2600:1700:5170:79l9s2iauo10, REQUEST_URI: /superpwa-sw.js?2.2.19 2023-12-24 21:04:13 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (92.86 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/10/28/%D8%AD%D8%A8%D8%B3-%D8%A7%D9%84%D9%81%D9%86%D8%A7%D9%86-%D8%A7%D9%84%D9%85%D8%B5%D8%B1%D9%8A-%D8%B9%D9%85%D8%B1%D9%88-%D9%88%D8%A7%D9%83%D8%AF-3-%D8%A3%D8%B4%D9%87%D8%B1-%D9%84%D9%87%D8%B0%D8%A7/agzr188.com, Stored debug messages: 2023-12-24 21:02:46 PST (DEBUG): Processing 404 for URL: /2017/10/28/حبس-الفنان-المصري-عمرو-واكد-3-أشهر-لهذا/agzr188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.mf44homk8200, REQUEST_URI: /2017/10/28/حبس-الفنان-المصري-عمرو-واكد-3-أشهر-لهذا/agzr188.com 2023-12-24 21:02:47 PST (DEBUG): No posts or pages matching slug: agzr188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (178.96 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agzr188 com', '2017 10 28 \xD8\xAD\xD8\xA8...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/10/28/\xD8\xAD\xD8\xA8...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/10/28/\xD8\xAD\xD8\xA8...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:04:03 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36, REMOTE_ADDR: 82.129.16.61bci92ckfl0, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:04:04 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (101.46 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/02/18/%D8%A7%D9%84%D8%AD%D9%84%D9%82-%D8%A7%D9%84%D9%84%D9%8A-%D8%B9%D8%A7%D9%85%D9%84-%D9%82%D9%84%D9%82-%D9%83%D9%85-%D9%8A%D8%A8%D9%84%D8%BA-%D8%B3%D8%B9%D8%B1-%D8%A3%D9%82%D8%B1%D8%A7%D8%B7-%D8%A3/huatihui188.com, Stored debug messages: 2023-12-24 21:02:34 PST (DEBUG): Processing 404 for URL: /2023/02/18/الحلق-اللي-عامل-قلق-كم-يبلغ-سعر-أقراط-أ/huatihui188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.v1ouqr6cggc0, REQUEST_URI: /2023/02/18/الحلق-اللي-عامل-قلق-كم-يبلغ-سعر-أقراط-أ/huatihui188.com 2023-12-24 21:02:35 PST (DEBUG): No posts or pages matching slug: huatihui188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (190.86 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'huatihui188 com', '2023 02 18 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/02/18/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/02/18/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/10/11/%D8%B3%D8%A7%D8%B1%D8%A9-%D8%AE%D9%84%D9%8A%D9%81%D8%A9-%D8%AA%D9%8F%D8%AD%D8%B1%D8%AC-%D8%AD%D9%85%D9%88-%D8%A8%D9%8A%D9%83%D8%A7-%D9%81%D9%8A-%D8%AF%D8%A8%D9%8A-%D9%88%D9%81%D9%8A%D8%AF%D9%8A%D9%88/huatihui188.com, Stored debug messages: 2023-12-24 21:04:35 PST (DEBUG): Processing 404 for URL: /2022/10/11/سارة-خليفة-تُحرج-حمو-بيكا-في-دبي-وفيديو/huatihui188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.64p913h85p40, REQUEST_URI: /2022/10/11/سارة-خليفة-تُحرج-حمو-بيكا-في-دبي-وفيديو/huatihui188.com 2023-12-24 21:04:36 PST (DEBUG): No posts or pages matching slug: huatihui188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (69.38 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'huatihui188 com', '2022 10 11 \xD8\xB3\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/10/11/\xD8\xB3\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/10/11/\xD8\xB3\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/10/20/%D8%A7%D9%84%D9%87%D9%84%D8%A7%D9%84-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D9%8A%D9%82%D8%B5%D9%8A-%D8%A7%D9%84%D9%86%D8%B5%D8%B1-%D9%88%D9%8A%D8%A8%D9%84%D8%BA-%D9%86%D9%87%D8%A7%D8%A6%D9%8A/jiangnanty188.com, Stored debug messages: 2023-12-24 21:03:27 PST (DEBUG): Processing 404 for URL: /2021/10/20/الهلال-السعودي-يقصي-النصر-ويبلغ-نهائي/jiangnanty188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4ruce7vs32i0, REQUEST_URI: /2021/10/20/الهلال-السعودي-يقصي-النصر-ويبلغ-نهائي/jiangnanty188.com 2023-12-24 21:03:28 PST (DEBUG): No posts or pages matching slug: jiangnanty188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (138.26 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'jiangnanty188 c...', '2021 10 20 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/10/20/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/10/20/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/06/30/%D8%B2%D9%88%D8%AC%D8%A9-%D8%AD%D8%A7%D9%83%D9%85-%D8%A7%D9%84%D8%B4%D8%A7%D8%B1%D9%82%D8%A9-%D8%AA%D9%86%D8%B4%D8%B1-%D8%B5%D9%88%D8%B1%D8%A9-%D9%84%D9%86%D8%AC%D9%84%D9%87%D8%A7-%D8%AE%D8%A7%D9%84/luyutiyu.com, Stored debug messages: 2023-12-24 21:04:06 PST (DEBUG): Processing 404 for URL: /2022/06/30/زوجة-حاكم-الشارقة-تنشر-صورة-لنجلها-خال/luyutiyu.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.64p913h85p40, REQUEST_URI: /2022/06/30/زوجة-حاكم-الشارقة-تنشر-صورة-لنجلها-خال/luyutiyu.com 2023-12-24 21:04:07 PST (DEBUG): No posts or pages matching slug: luyutiyu.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (99.12 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'luyutiyu com', '2022 06 30 \xD8\xB2\xD9\x88...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/06/30/\xD8\xB2\xD9\x88...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/06/30/\xD8\xB2\xD9\x88...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/01/27/%D8%A7%D9%84%D9%85%D9%86%D8%AA%D9%82%D8%A8%D8%A7%D8%AA-%D8%AC%D8%A7%D9%85%D8%B9%D8%A9-%D8%A7%D9%84%D9%82%D8%A7%D9%87%D8%B1%D8%A9/kaifayl.net, Stored debug messages: 2023-12-24 21:02:29 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2020/01/27/المنتقبات-جامعة-القاهرة/kaifayl.net 2023-12-24 21:02:29 PST (DEBUG): Processing 404 for URL: /2020/01/27/المنتقبات-جامعة-القاهرة/kaifayl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.2eecmeqd33q0, REQUEST_URI: /2020/01/27/المنتقبات-جامعة-القاهرة/kaifayl.net 2023-12-24 21:02:29 PST (DEBUG): No posts or pages matching slug: kaifayl.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (196.48 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaifayl net', '2020 01 27 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/01/27/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/01/27/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/07/16/%D9%81%D9%8A%D8%AF%D9%8A%D9%88-%D9%85%D8%A4%D8%AB%D8%B1-%D9%88%D8%A7%D9%84%D8%AF%D8%A9-%D8%B4%D9%87%D9%8A%D8%AF-%D9%81%D9%84%D8%B3%D8%B7%D9%8A%D9%86%D9%8A-%D8%A7%D8%B1%D8%AA%D9%82%D9%89-%D8%A8%D8%A7/pgdz168.com, Stored debug messages: 2023-12-24 21:04:57 PST (DEBUG): Processing 404 for URL: /2017/07/16/فيديو-مؤثر-والدة-شهيد-فلسطيني-ارتقى-با/pgdz168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4f2ji5vjna30, REQUEST_URI: /2017/07/16/فيديو-مؤثر-والدة-شهيد-فلسطيني-ارتقى-با/pgdz168.com 2023-12-24 21:04:58 PST (DEBUG): No posts or pages matching slug: pgdz168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (48.15 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pgdz168 com', '2017 07 16 \xD9\x81\xD9\x8A...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/07/16/\xD9\x81\xD9\x8A...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/07/16/\xD9\x81\xD9\x8A...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/08/11/%D8%B4%D9%82%D9%8A%D9%82%D8%A9-%D9%83%D9%8A%D9%85-%D8%AC%D9%88%D9%86%D8%BA-%D8%A3%D9%88%D9%86-%D8%AA%D8%B9%D9%84%D9%86-%D8%A5%D8%B5%D8%A7%D8%A8%D8%AA%D9%87-%D8%A8%D9%81%D9%8A%D8%B1%D9%88%D8%B3-%D9%83/wanboty188.com, Stored debug messages: 2023-12-24 21:05:00 PST (DEBUG): Processing 404 for URL: /2022/08/11/شقيقة-كيم-جونغ-أون-تعلن-إصابته-بفيروس-ك/wanboty188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.6jr526g0l480, REQUEST_URI: /2022/08/11/شقيقة-كيم-جونغ-أون-تعلن-إصابته-بفيروس-ك/wanboty188.com 2023-12-24 21:05:01 PST (DEBUG): No posts or pages matching slug: wanboty188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (44.87 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'wanboty188 com', '2022 08 11 \xD8\xB4\xD9\x82...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/08/11/\xD8\xB4\xD9\x82...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/08/11/\xD8\xB4\xD9\x82...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/%D9%85%D8%AD%D9%85%D8%AF-%D9%86%D9%88%D8%AD-%D8%A7%D9%84%D9%82%D8%B6%D8%A7%D8%A9.png, Stored debug messages: 2023-12-24 21:03:46 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/محمد-نوح-القضاة.png | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy), REMOTE_ADDR: 74.125.212.58fvr7j8njt0, REQUEST_URI: /wp-content/uploads/محمد-نوح-القضاة.png 2023-12-24 21:03:47 PST (DEBUG): No posts or pages matching slug: محمد-نوح-القضاة.png 2023-12-24 21:05:46 PST (DEBUG): Slow query (118.88 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD9\x85\xD8\xAD\xD9\x85\xD8\xAF \xD9\x86\xD9\x88\xD8\xAD...', 'wp content uplo...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/07/31/%D9%88%D8%B2%D9%8A%D8%B1%D8%A9-%D8%A7%D9%84%D8%AA%D8%AE%D8%B7%D9%8A%D8%B7-%D8%A7%D9%84%D9%85%D8%B5%D8%B1%D9%8A%D8%A9-%D8%AA%D8%AD%D8%B0%D9%81-%D8%AA%D8%BA%D8%B1%D9%8A%D8%AF%D8%A9-%D9%86%D8%B9%D9%8A/bdtiyu168.net, Stored debug messages: 2023-12-24 21:05:31 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/07/31/وزيرة-التخطيط-المصرية-تحذف-تغريدة-نعي/bdtiyu168.net 2023-12-24 21:05:31 PST (DEBUG): Processing 404 for URL: /2023/07/31/وزيرة-التخطيط-المصرية-تحذف-تغريدة-نعي/bdtiyu168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.55esdst4v200, REQUEST_URI: /2023/07/31/وزيرة-التخطيط-المصرية-تحذف-تغريدة-نعي/bdtiyu168.net 2023-12-24 21:05:32 PST (DEBUG): No posts or pages matching slug: bdtiyu168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (13.97 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'bdtiyu168 net', '2023 07 31 \xD9\x88\xD8\xB2...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/07/31/\xD9\x88\xD8\xB2...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/07/31/\xD9\x88\xD8\xB2...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /watan/2018/10/04/%D9%83%D9%84%D9%85%D8%A7-%D8%A3%D8%AA%D8%B0%D9%83%D8%B1-%D9%82%D8%AA%D9%84%D9%8A-%D9%84%D8%B9%D8%AF%D8%AF-%D9%85%D9%86-%D8%A7%D9%84%D8%B5%D9%87%D8%A7%D9%8A%D9%86%D8%A9-%D8%A3%D8%B4%D8%B9%D8%B1/, Stored debug messages: 2023-12-24 21:02:57 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /watan/2018/10/04/كلما-أتذكر-قتلي-لعدد-من-الصهاينة-أشعر/ 2023-12-24 21:02:57 PST (DEBUG): Processing 404 for URL: /watan/2018/10/04/كلما-أتذكر-قتلي-لعدد-من-الصهاينة-أشعر/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 213.180.203.nsogmdv45gs0, REQUEST_URI: /watan/2018/10/04/كلما-أتذكر-قتلي-لعدد-من-الصهاينة-أشعر/ 2023-12-24 21:02:58 PST (DEBUG): No posts or pages matching slug: كلما-أتذكر-قتلي-لعدد-من-الصهاينة-أشعر 2023-12-24 21:05:46 PST (DEBUG): Slow query (167.44 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD9\x83\xD9\x84\xD9\x85\xD8\xA7 \xD8\xA3\xD8\xAA\xD8\xB0...', 'watan 2018 10 0...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('watan/2018/10/0...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('watan/2018/10/0...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/, Requested URL: /wp-content/cache/minify/f13d0.css, Stored debug messages: 2023-12-24 21:02:58 PST (DEBUG): Processing 404 for URL: /wp-content/cache/minify/f13d0.css | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.82, REMOTE_ADDR: 151.253.147.655sdtcr61k0, REQUEST_URI: /wp-content/cache/minify/f13d0.css 2023-12-24 21:02:59 PST (DEBUG): No posts or pages matching slug: f13d0.css 2023-12-24 21:05:46 PST (DEBUG): Slow query (166.8 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'f13d0 css', 'wp content cach...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/cach...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/cach...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/12/10/%D8%B2%D9%88%D8%AC%D8%A9-%D8%B1%D8%AC%D9%84-%D8%A3%D8%B9%D9%85%D8%A7%D9%84-%D8%AA%D9%88%D9%86%D8%B3%D9%8A-%D8%AF%D8%AE%D9%84%D8%AA-%D9%84%D8%A5%D8%AC%D8%B1%D8%A7%D8%A1-%D8%B9%D9%85%D9%84%D9%8A%D8%A9/huatihui188.com, Stored debug messages: 2023-12-24 21:03:59 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/12/10/زوجة-رجل-أعمال-تونسي-دخلت-لإجراء-عملية/huatihui188.com 2023-12-24 21:03:59 PST (DEBUG): Processing 404 for URL: /2016/12/10/زوجة-رجل-أعمال-تونسي-دخلت-لإجراء-عملية/huatihui188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.1hvru0slocmg, REQUEST_URI: /2016/12/10/زوجة-رجل-أعمال-تونسي-دخلت-لإجراء-عملية/huatihui188.com 2023-12-24 21:04:00 PST (DEBUG): No posts or pages matching slug: huatihui188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (105.75 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'huatihui188 com', '2016 12 10 \xD8\xB2\xD9\x88...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/12/10/\xD8\xB2\xD9\x88...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/12/10/\xD8\xB2\xD9\x88...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/09/20/%D8%B1%D9%88%D8%A7%D9%86-%D8%A8%D9%86-%D8%AD%D8%B3%D9%8A%D9%86-%D8%AA%D8%B1%D9%82%D8%B5-%D8%A8%D8%B9%D9%84%D9%85-%D8%A5%D9%8A%D8%B1%D8%A7%D9%86-%D8%B1%D8%AF%D8%A7%D9%8B-%D8%B9%D9%84%D9%89-%D8%B7%D8%B1/pmzr.org, Stored debug messages: 2023-12-24 21:05:25 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/09/20/روان-بن-حسين-ترقص-بعلم-إيران-رداً-على-طر/pmzr.org 2023-12-24 21:05:25 PST (DEBUG): Processing 404 for URL: /2023/09/20/روان-بن-حسين-ترقص-بعلم-إيران-رداً-على-طر/pmzr.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2023/09/20/روان-بن-حسين-ترقص-بعلم-إيران-رداً-على-طر/pmzr.org 2023-12-24 21:05:26 PST (DEBUG): No posts or pages matching slug: pmzr.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (20.14 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pmzr org', '2023 09 20 \xD8\xB1\xD9\x88...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/09/20/\xD8\xB1\xD9\x88...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/09/20/\xD8\xB1\xD9\x88...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/, Requested URL: /wp-content/cache/minify/9f8f7.css, Stored debug messages: 2023-12-24 21:02:40 PST (DEBUG): Processing 404 for URL: /wp-content/cache/minify/9f8f7.css | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 13; SAMSUNG SM-A145F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/19.0 Chrome/102.0.5005.125 Mobile Safari/537.36, REMOTE_ADDR: 154.121.36.7gidf4plci10, REQUEST_URI: /wp-content/cache/minify/9f8f7.css 2023-12-24 21:02:41 PST (DEBUG): No posts or pages matching slug: 9f8f7.css 2023-12-24 21:05:46 PST (DEBUG): Slow query (184.74 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '9f8f7 css', 'wp content cach...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/cach...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/cach...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/09/11/%D8%AA%D9%88%D9%86%D8%B3-%D8%B4%D8%A7%D8%A8-%D9%8A%D8%AD%D8%B1%D9%82-%D9%86%D9%81%D8%B3%D9%87-%D8%A8%D8%B4%D8%A7%D8%B1%D8%B9-%D8%A7%D9%84%D8%AD%D8%A8%D9%8A%D8%A8-%D8%A8%D9%88%D8%B1%D9%82%D9%8A%D8%A8/tbtiyu188.com, Stored debug messages: 2023-12-24 21:02:38 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/09/11/تونس-شاب-يحرق-نفسه-بشارع-الحبيب-بورقيب/tbtiyu188.com 2023-12-24 21:02:38 PST (DEBUG): Processing 404 for URL: /2021/09/11/تونس-شاب-يحرق-نفسه-بشارع-الحبيب-بورقيب/tbtiyu188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.1nkt4tg274cg, REQUEST_URI: /2021/09/11/تونس-شاب-يحرق-نفسه-بشارع-الحبيب-بورقيب/tbtiyu188.com 2023-12-24 21:02:38 PST (DEBUG): No posts or pages matching slug: tbtiyu188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (187.49 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'tbtiyu188 com', '2021 09 11 \xD8\xAA\xD9\x88...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/09/11/\xD8\xAA\xD9\x88...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/09/11/\xD8\xAA\xD9\x88...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2020/05/%D9%85%D8%AD%D9%85%D8%AF-%D8%A8%D9%86-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D9%88%D8%AA%D8%B1%D8%A7%D9%85%D8%A8.jpg, Stored debug messages: 2023-12-24 21:03:06 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2020/05/محمد-بن-سلمان-وترامب.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com), REMOTE_ADDR: 64.124.8.7rqu9pqpq9j0, REQUEST_URI: /wp-content/uploads/2020/05/محمد-بن-سلمان-وترامب.jpg 2023-12-24 21:03:07 PST (DEBUG): No posts or pages matching slug: محمد-بن-سلمان-وترامب.jpg 2023-12-24 21:05:46 PST (DEBUG): Slow query (158.67 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD9\x85\xD8\xAD\xD9\x85\xD8\xAF \xD8\xA8\xD9\x86 \xD8...', 'wp content uplo...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/01/02/%D8%AE%D9%81%D9%91%D9%88%D8%A7-%D8%B9%D9%84%D9%8A%D9%86%D8%A7-%D8%B4%D9%88%D9%8A%D8%A9-%D9%8A%D9%88%D8%B3%D9%81-%D8%A7%D9%84%D8%AD%D8%B3%D9%8A%D9%86%D9%8A-%D9%8A%D8%A8%D9%83%D9%8A-%D8%B9%D9%84/ag-zunlongkaishi.net, Stored debug messages: 2023-12-24 21:02:30 PST (DEBUG): Processing 404 for URL: /2017/01/02/خفّوا-علينا-شوية-يوسف-الحسيني-يبكي-عل/ag-zunlongkaishi.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html), REMOTE_ADDR: 85.208.96.93lc4vjmj060, REQUEST_URI: /2017/01/02/خفّوا-علينا-شوية-يوسف-الحسيني-يبكي-عل/ag-zunlongkaishi.net 2023-12-24 21:02:31 PST (DEBUG): No posts or pages matching slug: ag-zunlongkaishi.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (194.95 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'ag zunlongkaish...', '2017 01 02 \xD8\xAE\xD9\x81...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/01/02/\xD8\xAE\xD9\x81...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/01/02/\xD8\xAE\xD9\x81...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2018/10/%D8%B2%D9%8A%D8%A7%D8%B1%D8%A9-%D9%85%D8%AD%D9%85%D8%AF-%D8%A8%D9%86-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D9%84%D9%84%D9%83%D9%88%D9%8A%D8%AA.jpg, Stored debug messages: 2023-12-24 21:03:49 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2018/10/زيارة-محمد-بن-سلمان-للكويت.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com), REMOTE_ADDR: 64.124.8.vu7f7eg05v40, REQUEST_URI: /wp-content/uploads/2018/10/زيارة-محمد-بن-سلمان-للكويت.jpg 2023-12-24 21:03:50 PST (DEBUG): No posts or pages matching slug: زيارة-محمد-بن-سلمان-للكويت.jpg 2023-12-24 21:05:46 PST (DEBUG): Slow query (115.71 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD8\xB2\xD9\x8A\xD8\xA7\xD8\xB1\xD8\xA9 \xD9\x85\xD8\xAD...', 'wp content uplo...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/06/14/%D9%85%D8%B1%D9%8A%D9%85-%D8%AD%D8%B3%D9%8A%D9%86-%D8%AC%D8%B1%D8%A3%D8%A9-%D8%AC%D8%AF%D9%8A%D8%AF%D8%A9-%D8%A8%D8%A5%D8%B7%D9%84%D8%A7%D9%84%D8%A9-%D9%85%D8%AB%D9%8A%D8%B1%D8%A9-%D9%85%D9%86/pmzr.org, Stored debug messages: 2023-12-24 21:05:20 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/06/14/مريم-حسين-جرأة-جديدة-بإطلالة-مثيرة-من/pmzr.org 2023-12-24 21:05:20 PST (DEBUG): Processing 404 for URL: /2023/06/14/مريم-حسين-جرأة-جديدة-بإطلالة-مثيرة-من/pmzr.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2023/06/14/مريم-حسين-جرأة-جديدة-بإطلالة-مثيرة-من/pmzr.org 2023-12-24 21:05:21 PST (DEBUG): No posts or pages matching slug: pmzr.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (24.59 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pmzr org', '2023 06 14 \xD9\x85\xD8\xB1...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/06/14/\xD9\x85\xD8\xB1...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/06/14/\xD9\x85\xD8\xB1...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/04/03/3-%D9%86%D8%B5%D8%A7%D8%A6%D8%AD-%D9%84%D8%A5%D8%B9%D8%A7%D8%AF%D8%A9-%D8%A7%D9%84%D8%B9%D9%84%D8%A7%D9%82%D8%A9-%D8%A7%D9%84%D8%AD%D9%85%D9%8A%D9%85%D8%A9-%D8%A5%D9%84%D9%89-%D8%A3%D9%88%D8%AC%D9%87/luyutiyu.com, Stored debug messages: 2023-12-24 21:03:01 PST (DEBUG): Processing 404 for URL: /2016/04/03/3-نصائح-لإعادة-العلاقة-الحميمة-إلى-أوجه/luyutiyu.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.5amchoi8lso0, REQUEST_URI: /2016/04/03/3-نصائح-لإعادة-العلاقة-الحميمة-إلى-أوجه/luyutiyu.com 2023-12-24 21:03:02 PST (DEBUG): No posts or pages matching slug: luyutiyu.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (163.75 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'luyutiyu com', '2016 04 03 3 \xD9\x86...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/04/03/3-\xD9\x86...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/04/03/3-\xD9\x86...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/05/12/%D9%83%D8%AA%D8%A7%D8%A6%D8%A8-%D8%A7%D9%84%D9%82%D8%B3%D8%A7%D9%85-%D8%AA%D8%A8%D8%AB-%D9%84%D8%AD%D8%B8%D8%A9-%D8%AA%D8%AF%D9%85%D9%8A%D8%B1-%D8%AC%D9%8A%D8%A8/pgdz168.net, Stored debug messages: 2023-12-24 21:05:31 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/05/12/كتائب-القسام-تبث-لحظة-تدمير-جيب/pgdz168.net 2023-12-24 21:05:31 PST (DEBUG): Processing 404 for URL: /2021/05/12/كتائب-القسام-تبث-لحظة-تدمير-جيب/pgdz168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.55esdst4v200, REQUEST_URI: /2021/05/12/كتائب-القسام-تبث-لحظة-تدمير-جيب/pgdz168.net 2023-12-24 21:05:32 PST (DEBUG): No posts or pages matching slug: pgdz168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (14.11 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pgdz168 net', '2021 05 12 \xD9\x83\xD8\xAA...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/05/12/\xD9\x83\xD8\xAA...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/05/12/\xD9\x83\xD8\xAA...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/, Requested URL: /wp-content/cache/minify/f13d0.css, Stored debug messages: 2023-12-24 21:02:40 PST (DEBUG): Processing 404 for URL: /wp-content/cache/minify/f13d0.css | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 13; SAMSUNG SM-A145F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/19.0 Chrome/102.0.5005.125 Mobile Safari/537.36, REMOTE_ADDR: 154.121.36.7gidf4plci10, REQUEST_URI: /wp-content/cache/minify/f13d0.css 2023-12-24 21:02:41 PST (DEBUG): No posts or pages matching slug: f13d0.css 2023-12-24 21:05:46 PST (DEBUG): Slow query (184.9 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'f13d0 css', 'wp content cach...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/cach...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/cach...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/02/20/%D8%A8%D8%B3%D8%A8%D8%A8-%D8%A7%D8%B1%D8%AA%D9%81%D8%A7%D8%B9-%D8%A7%D9%84%D8%A3%D8%B3%D8%B9%D8%A7%D8%B1-%D9%85%D8%B1%D8%AA%D8%A7%D8%AF%D9%88-%D8%A3%D8%AD%D8%AF-%D8%A7%D9%84%D8%A3%D8%B3%D9%88%D8%A7/agzr.org, Stored debug messages: 2023-12-24 21:04:46 PST (DEBUG): Processing 404 for URL: /2022/02/20/بسبب-ارتفاع-الأسعار-مرتادو-أحد-الأسوا/agzr.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.69u3s9busol0, REQUEST_URI: /2022/02/20/بسبب-ارتفاع-الأسعار-مرتادو-أحد-الأسوا/agzr.org 2023-12-24 21:04:47 PST (DEBUG): No posts or pages matching slug: agzr.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (58.56 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agzr org', '2022 02 20 \xD8\xA8\xD8\xB3...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/02/20/\xD8\xA8\xD8\xB3...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/02/20/\xD8\xA8\xD8\xB3...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2014/05/11/%D8%AC%D8%AF%D9%84-%D8%A8%D8%B9%D8%AF-%D9%82%D9%88%D9%84-%D9%83%D8%A7%D8%AA%D8%A8-%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D9%8A%D8%B3%D9%87%D9%84-%D8%A7%D8%B3%D8%AA%D8%AD%D9%85%D8%A7%D8%B1-%D8%A7%D9%84-2/xcai168.net, Stored debug messages: 2023-12-24 21:04:59 PST (DEBUG): Processing 404 for URL: /2014/05/11/جدل-بعد-قول-كاتب-سعودي-يسهل-استحمار-ال-2/xcai168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.v1ouqr6cggc0, REQUEST_URI: /2014/05/11/جدل-بعد-قول-كاتب-سعودي-يسهل-استحمار-ال-2/xcai168.net 2023-12-24 21:05:00 PST (DEBUG): No posts or pages matching slug: xcai168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (45.95 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'xcai168 net', '2014 05 11 \xD8\xAC\xD8\xAF...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2014/05/11/\xD8\xAC\xD8\xAF...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2014/05/11/\xD8\xAC\xD8\xAF...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/09/25/21-, Stored debug messages: 2023-12-24 21:04:07 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /2017/09/25/21- 2023-12-24 21:04:07 PST (DEBUG): Processing 404 for URL: /2017/09/25/21- | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 66.249.72.mf44homk8200, REQUEST_URI: /2017/09/25/21- 2023-12-24 21:04:07 PST (DEBUG): No posts or pages matching slug: 21- 2023-12-24 21:05:46 PST (DEBUG): Slow query (98.4 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '21 ', '2017 09 25 21 ', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/09/25/21-', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/09/25/21-') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/10/14/%D8%A8%D9%85%D8%B4%D8%A7%D8%B1%D9%83%D8%A9-%D8%AD%D8%A7%D8%AE%D8%A7%D9%85%D8%A7%D8%AA-%D9%88%D9%82%D8%B3%D8%A7%D9%88%D8%B3%D8%A9-%D8%A7%D8%A8%D9%86-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D9%81%D8%AA%D8%AD/agzl.net, Stored debug messages: 2023-12-24 21:02:35 PST (DEBUG): Processing 404 for URL: /2020/10/14/بمشاركة-حاخامات-وقساوسة-ابن-سلمان-فتح/agzl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4ruce7vs32i0, REQUEST_URI: /2020/10/14/بمشاركة-حاخامات-وقساوسة-ابن-سلمان-فتح/agzl.net 2023-12-24 21:02:36 PST (DEBUG): No posts or pages matching slug: agzl.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (189.9 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agzl net', '2020 10 14 \xD8\xA8\xD9\x85...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/10/14/\xD8\xA8\xD9\x85...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/10/14/\xD8\xA8\xD9\x85...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/08/25/%D8%AF%D9%86%D9%8A%D8%A7-%D8%A8%D8%B7%D9%85%D8%A9-%D8%AA%D9%83%D8%B4%D9%81-%D8%A8%D8%B7%D9%86%D9%87%D8%A7-%D9%88%D8%B5%D8%B1%D8%AA%D9%87%D8%A7-%D8%A8%D9%81%D8%B3%D8%AA%D8%A7%D9%86-%D8%A3%D8%AD%D9%85/yxty168.org%22, Stored debug messages: 2023-12-24 21:02:38 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/08/25/دنيا-بطمة-تكشف-بطنها-وصرتها-بفستان-أحم/yxty168.org 2023-12-24 21:02:38 PST (DEBUG): Processing 404 for URL: /2023/08/25/دنيا-بطمة-تكشف-بطنها-وصرتها-بفستان-أحم/yxty168.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.1nkt4tg274cg, REQUEST_URI: /2023/08/25/دنيا-بطمة-تكشف-بطنها-وصرتها-بفستان-أحم/yxty168.org" 2023-12-24 21:02:39 PST (DEBUG): No posts or pages matching slug: yxty168.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (186.67 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'yxty168 org', '2023 08 25 \xD8\xAF\xD9\x86...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/08/25/\xD8\xAF\xD9\x86...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/08/25/\xD8\xAF\xD9\x86...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/08/06/%D9%81%D9%8A%D8%AF%D9%8A%D9%88-%D9%84%D9%80-%D8%B1%D9%8A%D8%A7%D8%B6-%D9%85%D8%AD%D8%B1%D8%B2-%D9%8A%D9%81%D8%A7%D8%AC%D9%89%D8%A1-%D9%85%D8%B4%D8%AC%D8%B9%D8%A9-%D9%85%D8%AE%D9%84%D8%B5%D8%A9/shaba188.net, Stored debug messages: 2023-12-24 21:03:48 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/08/06/فيديو-لـ-رياض-محرز-يفاجىء-مشجعة-مخلصة/shaba188.net 2023-12-24 21:03:48 PST (DEBUG): Processing 404 for URL: /2022/08/06/فيديو-لـ-رياض-محرز-يفاجىء-مشجعة-مخلصة/shaba188.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2022/08/06/فيديو-لـ-رياض-محرز-يفاجىء-مشجعة-مخلصة/shaba188.net 2023-12-24 21:03:49 PST (DEBUG): No posts or pages matching slug: shaba188.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (116.81 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'shaba188 net', '2022 08 06 \xD9\x81\xD9\x8A...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/08/06/\xD9\x81\xD9\x8A...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/08/06/\xD9\x81\xD9\x8A...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/07/22/%D8%A7%D9%84%D8%B9%D9%85%D8%A7%D9%86%D9%8A%D9%88%D9%86-%D9%8A%D8%B7%D9%84%D9%82%D9%88%D9%86-%D8%AD%D9%85%D9%84%D8%A9-%D9%84%D8%A5%D9%86%D9%82%D8%A7%D8%B0-%D9%85%D9%8A%D8%B1%D8%A7%D9%84/agzl.net, Stored debug messages: 2023-12-24 21:02:54 PST (DEBUG): Processing 404 for URL: /2021/07/22/العمانيون-يطلقون-حملة-لإنقاذ-ميرال/agzl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.64p913h85p40, REQUEST_URI: /2021/07/22/العمانيون-يطلقون-حملة-لإنقاذ-ميرال/agzl.net 2023-12-24 21:02:55 PST (DEBUG): No posts or pages matching slug: agzl.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (171.2 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agzl net', '2021 07 22 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/07/22/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/07/22/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/06/27/%D8%AA%D9%85%D8%B1%D8%AF-%D8%A7%D9%84%D9%85%D8%B3%D8%AA%D9%88%D8%B7%D9%86%D9%8A%D9%86-%D8%B7%D8%B1%D8%AF-%D8%B6%D8%A7%D8%A8%D8%B7-%D9%83%D8%A8%D9%8A%D8%B1-%D8%A8%D8%AC%D9%8A%D8%B4-%D8%A7%D9%84%D8%A7/yaxingtiyu.vip, Stored debug messages: 2023-12-24 21:05:20 PST (DEBUG): Processing 404 for URL: /2023/06/27/تمرد-المستوطنين-طرد-ضابط-كبير-بجيش-الا/yaxingtiyu.vip | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4ruce7vs32i0, REQUEST_URI: /2023/06/27/تمرد-المستوطنين-طرد-ضابط-كبير-بجيش-الا/yaxingtiyu.vip 2023-12-24 21:05:21 PST (DEBUG): No posts or pages matching slug: yaxingtiyu.vip 2023-12-24 21:05:46 PST (DEBUG): Slow query (25.07 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'yaxingtiyu vip', '2023 06 27 \xD8\xAA\xD9\x85...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/06/27/\xD8\xAA\xD9\x85...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/06/27/\xD8\xAA\xD9\x85...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:05:04 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36, REMOTE_ADDR: 78.100.150.53ope2it1720, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:05:04 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (41.33 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2023/10/%D9%85%D8%AD%D9%85%D8%AF-%D8%A3%D8%AD%D9%85%D8%AF-%D8%A7%D9%84%D9%85%D9%84%D8%A7.webp, Stored debug messages: 2023-12-24 21:05:00 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /wp-content/uploads/2023/10/محمد-أحمد-الملا.webp 2023-12-24 21:05:00 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2023/10/محمد-أحمد-الملا.webp | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.55esdst4v200, REQUEST_URI: /wp-content/uploads/2023/10/محمد-أحمد-الملا.webp 2023-12-24 21:05:01 PST (DEBUG): No posts or pages matching slug: محمد-أحمد-الملا.webp 2023-12-24 21:05:46 PST (DEBUG): Slow query (44.46 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD9\x85\xD8\xAD\xD9\x85\xD8\xAF \xD8\xA3\xD8\xAD\xD9\x85...', 'wp content uplo...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 16), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/05/14/%D8%A5%D8%B9%D9%84%D8%A7%D9%85%D9%8A-%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D9%8A%D8%B1%D9%82%D8%B5-%D8%B9%D9%84%D9%89-%D8%AC%D8%AB%D8%AB-%D8%B4%D9%87%D8%AF%D8%A7%D8%A1-%D8%BA%D8%B2%D8%A9-%D9%88%D9%8A%D9%82/aiyouxity168.com, Stored debug messages: 2023-12-24 21:02:20 PST (DEBUG): Processing 404 for URL: /2018/05/14/إعلامي-سعودي-يرقص-على-جثث-شهداء-غزة-ويق/aiyouxity168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.69u3s9busol0, REQUEST_URI: /2018/05/14/إعلامي-سعودي-يرقص-على-جثث-شهداء-غزة-ويق/aiyouxity168.com 2023-12-24 21:02:21 PST (DEBUG): No posts or pages matching slug: aiyouxity168.com 2023-12-24 21:02:56 PST (DEBUG): Slow query (35.49 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:46 PST (DEBUG): Slow query (169.57 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(16, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(16) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(555): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('aiyouxity168 co...', '2018 05 14 \xD8\xA5\xD8\xB9...', 'tags', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'aiyouxity168 co...', '2018 05 14 \xD8\xA5\xD8\xB9...', 'tags') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/05/14/\xD8\xA5\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/05/14/\xD8\xA5\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/08/14/%D9%81%D9%8A-%D8%B0%D9%83%D8%B1%D8%A7%D9%87%D8%A7-%D8%A7%D9%84%D8%B3%D8%A7%D8%AF%D8%B3%D8%A9-%D8%B1%D8%A7%D8%A8%D8%B9%D8%A9-%D8%B3%D8%AA%D8%B8%D9%84-%D9%88%D8%B5%D9%85%D8%A9-%D8%B9%D8%A7%D8%B1/agbjl168.com, Stored debug messages: 2023-12-24 21:03:00 PST (DEBUG): Processing 404 for URL: /2019/08/14/في-ذكراها-السادسة-رابعة-ستظل-وصمة-عار/agbjl168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.352auk7meal0, REQUEST_URI: /2019/08/14/في-ذكراها-السادسة-رابعة-ستظل-وصمة-عار/agbjl168.com 2023-12-24 21:03:01 PST (DEBUG): No posts or pages matching slug: agbjl168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (164.83 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agbjl168 com', '2019 08 14 \xD9\x81\xD9\x8A...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/08/14/\xD9\x81\xD9\x8A...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/08/14/\xD9\x81\xD9\x8A...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tag/%D8%B4%D9%8A%D8%AE-%D8%B9%D8%B4%D9%8A%D8%B1%D8%A9-%D8%B9%D8%B1%D8%A7%D9%82%D9%8A%D8%A9/, Stored debug messages: 2023-12-24 21:02:59 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /tag/شيخ-عشيرة-عراقية/ 2023-12-24 21:02:59 PST (DEBUG): Processing 404 for URL: /tag/شيخ-عشيرة-عراقية/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 213.180.203.1nkt4tg274cg, REQUEST_URI: /tag/شيخ-عشيرة-عراقية/ 2023-12-24 21:03:00 PST (DEBUG): No posts or pages matching slug: شيخ-عشيرة-عراقية 2023-12-24 21:05:46 PST (DEBUG): Slow query (166.22 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD8\xB4\xD9\x8A\xD8\xAE \xD8\xB9\xD8\xB4\xD9\x8A\xD8\xB1...', 'tag \xD8\xB4\xD9\x8A\xD8\xAE \xD8\xB9\xD8\xB4...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tag/\xD8\xB4\xD9\x8A\xD8\xAE-\xD8\xB9\xD8\xB4...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tag/\xD8\xB4\xD9\x8A\xD8\xAE-\xD8\xB9\xD8\xB4...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/06/28/%D9%88%D8%A7%D8%B4%D9%86%D8%B7%D9%86-%D8%A8%D9%88%D8%B3%D8%AA-%D8%A7%D9%84%D8%A5%D9%85%D8%A7%D8%B1%D8%A7%D8%AA-%D8%AA%D8%AF%D8%B9%D9%85-%D8%A5%D8%B3%D9%84%D8%A7%D9%85-%D8%A7%D9%84%D8%A3%D8%B2/ag-baccarat.live, Stored debug messages: 2023-12-24 21:02:45 PST (DEBUG): Processing 404 for URL: /2017/06/28/واشنطن-بوست-الإمارات-تدعم-إسلام-الأز/ag-baccarat.live | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.679mbr07le50, REQUEST_URI: /2017/06/28/واشنطن-بوست-الإمارات-تدعم-إسلام-الأز/ag-baccarat.live 2023-12-24 21:02:46 PST (DEBUG): No posts or pages matching slug: ag-baccarat.live 2023-12-24 21:05:46 PST (DEBUG): Slow query (179.7 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'ag baccarat liv...', '2017 06 28 \xD9\x88\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/06/28/\xD9\x88\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/06/28/\xD9\x88\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/02/23/%D9%8A%D9%88%D9%85-%D8%A7%D9%84%D8%AA%D8%A3%D8%B3%D9%8A%D8%B3-%D8%B3%D8%B9%D9%88%D8%AF%D9%8A%D8%A7%D8%AA-%D8%A8%D9%85%D9%84%D8%A7%D8%A8%D8%B3-%D9%85%D8%AB%D9%8A%D8%B1%D8%A9-%D9%88%D8%AA%D8%AD%D8%B1/yaxingtiyu.vip, Stored debug messages: 2023-12-24 21:04:52 PST (DEBUG): Processing 404 for URL: /2023/02/23/يوم-التأسيس-سعوديات-بملابس-مثيرة-وتحر/yaxingtiyu.vip | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.352auk7meal0, REQUEST_URI: /2023/02/23/يوم-التأسيس-سعوديات-بملابس-مثيرة-وتحر/yaxingtiyu.vip 2023-12-24 21:04:53 PST (DEBUG): No posts or pages matching slug: yaxingtiyu.vip 2023-12-24 21:05:46 PST (DEBUG): Slow query (52.87 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'yaxingtiyu vip', '2023 02 23 \xD9\x8A\xD9\x88...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/02/23/\xD9\x8A\xD9\x88...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/02/23/\xD9\x8A\xD9\x88...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/12/23/%D9%8A%D8%AA%D9%82%D8%AF%D9%85%D9%87%D9%85-%D9%83%D9%84%D8%A8%D9%87%D9%85-%D9%81%D9%88%D8%A8%D9%8A%D8%A7-%D8%A3%D9%86%D9%81%D8%A7%D9%82-%D8%BA%D8%B2%D8%A9-%D8%AA%D8%B6%D8%B1%D8%A8-%D8%AC%D9%86/preload, Stored debug messages: 2023-12-24 21:04:49 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /2023/12/23/يتقدمهم-كلبهم-فوبيا-أنفاق-غزة-تضرب-جن/preload 2023-12-24 21:04:49 PST (DEBUG): Processing 404 for URL: /2023/12/23/يتقدمهم-كلبهم-فوبيا-أنفاق-غزة-تضرب-جن/preload | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 95.108.213.5n7jhphgsva0, REQUEST_URI: /2023/12/23/يتقدمهم-كلبهم-فوبيا-أنفاق-غزة-تضرب-جن/preload 2023-12-24 21:04:50 PST (DEBUG): No posts or pages matching slug: preload 2023-12-24 21:05:46 PST (DEBUG): Slow query (55.84 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'preload', '2023 12 23 \xD9\x8A\xD8\xAA...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/12/23/\xD9\x8A\xD8\xAA...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/12/23/\xD9\x8A\xD8\xAA...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/04/11/%D9%84%D9%8A%D9%84%D9%89-%D8%B9%D8%A8%D8%AF%D8%A7%D9%84%D9%84%D9%87-%D8%AA%D8%B1%D8%AF-%D8%A8%D8%B9%D8%AF-%D9%85%D8%B4%D9%87%D8%AF-%D8%AE%D9%84%D8%B9-%D9%85%D9%84%D8%A7%D8%A8%D8%B3%D9%87%D8%A7-%D8%A7/xcai188.com, Stored debug messages: 2023-12-24 21:04:58 PST (DEBUG): Processing 404 for URL: /2022/04/11/ليلى-عبدالله-ترد-بعد-مشهد-خلع-ملابسها-ا/xcai188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.64p913h85p40, REQUEST_URI: /2022/04/11/ليلى-عبدالله-ترد-بعد-مشهد-خلع-ملابسها-ا/xcai188.com 2023-12-24 21:04:59 PST (DEBUG): No posts or pages matching slug: xcai188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (47.23 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'xcai188 com', '2022 04 11 \xD9\x84\xD9\x8A...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/04/11/\xD9\x84\xD9\x8A...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/04/11/\xD9\x84\xD9\x8A...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/05/03/%D8%A8%D8%B1%D9%88%D9%81%D9%8A%D8%B3%D9%88%D8%B1-%D8%A5%D8%B3%D8%B1%D8%A7%D8%A6%D9%8A%D9%84%D9%8A-%D8%A7%D9%84%D9%81%D8%A7%D8%A6%D8%B2-%D9%81%D9%8A-%D8%A7%D9%86%D8%AA%D8%AE%D8%A7%D8%A8%D8%A7%D8%AA/agbjl.org, Stored debug messages: 2023-12-24 21:04:39 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /2017/05/03/بروفيسور-إسرائيلي-الفائز-في-انتخابات/agbjl.org 2023-12-24 21:04:39 PST (DEBUG): Processing 404 for URL: /2017/05/03/بروفيسور-إسرائيلي-الفائز-في-انتخابات/agbjl.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 5.255.231.4e55l0cuhnb0, REQUEST_URI: /2017/05/03/بروفيسور-إسرائيلي-الفائز-في-انتخابات/agbjl.org 2023-12-24 21:04:40 PST (DEBUG): No posts or pages matching slug: agbjl.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (65.52 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agbjl org', '2017 05 03 \xD8\xA8\xD8\xB1...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/05/03/\xD8\xA8\xD8\xB1...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/05/03/\xD8\xA8\xD8\xB1...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/03/11/%D8%B5%D9%88%D8%B1%D8%A9-%D8%B5%D8%AF%D9%8A%D9%82%D8%A9-%D8%B1%D9%88%D9%86%D8%A7%D9%84%D8%AF%D9%88-%D8%AC%D9%88%D8%B1%D8%AC%D9%8A%D9%86%D8%A7-%D8%AA%D8%B3%D8%AA%D8%B9%D8%B1%D8%B6-%D8%A3%D8%B1/aiyouxi168.net, Stored debug messages: 2023-12-24 21:03:20 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/03/11/صورة-صديقة-رونالدو-جورجينا-تستعرض-أر/aiyouxi168.net 2023-12-24 21:03:20 PST (DEBUG): Processing 404 for URL: /2021/03/11/صورة-صديقة-رونالدو-جورجينا-تستعرض-أر/aiyouxi168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2021/03/11/صورة-صديقة-رونالدو-جورجينا-تستعرض-أر/aiyouxi168.net 2023-12-24 21:03:21 PST (DEBUG): No posts or pages matching slug: aiyouxi168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (144.97 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'aiyouxi168 net', '2021 03 11 \xD8\xB5\xD9\x88...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/03/11/\xD8\xB5\xD9\x88...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/03/11/\xD8\xB5\xD9\x88...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/, Requested URL: /wp-content/cache/minify/4386b.css, Stored debug messages: 2023-12-24 21:02:58 PST (DEBUG): Processing 404 for URL: /wp-content/cache/minify/4386b.css | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Edg/114.0.1823.82, REMOTE_ADDR: 151.253.147.655sdtcr61k0, REQUEST_URI: /wp-content/cache/minify/4386b.css 2023-12-24 21:02:59 PST (DEBUG): No posts or pages matching slug: 4386b.css 2023-12-24 21:05:46 PST (DEBUG): Slow query (166.85 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '4386b css', 'wp content cach...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/cach...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/cach...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tag/%D9%83%D8%B1%D9%8A%D8%B3-%D8%B1%D9%88%D9%83/agzr188.com, Stored debug messages: 2023-12-24 21:02:50 PST (DEBUG): Processing 404 for URL: /tag/كريس-روك/agzr188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.v1ouqr6cggc0, REQUEST_URI: /tag/كريس-روك/agzr188.com 2023-12-24 21:02:51 PST (DEBUG): No posts or pages matching slug: agzr188.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (175.22 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'agzr188 com', 'tag \xD9\x83\xD8\xB1\xD9\x8A\xD8\xB3 \xD8\xB1...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tag/\xD9\x83\xD8\xB1\xD9\x8A\xD8\xB3-\xD8\xB1...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tag/\xD9\x83\xD8\xB1\xD9\x8A\xD8\xB3-\xD8\xB1...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/05/03/%D9%85%D9%88%D9%82%D8%B9-%D8%A8%D8%B1%D9%8A%D8%B7%D8%A7%D9%86%D9%8A-%D8%AA%D8%B3%D8%B1%D9%8A%D8%A8%D8%A7%D8%AA-%D9%86%D8%A7%D8%AF%D9%8A%D8%A9-%D8%B9%D9%83%D8%A7%D8%B4%D8%A9-%D8%AA%D8%B9%D9%83%D8%B3/j9jiuyouhui.com, Stored debug messages: 2023-12-24 21:04:53 PST (DEBUG): Processing 404 for URL: /2022/05/03/موقع-بريطاني-تسريبات-نادية-عكاشة-تعكس/j9jiuyouhui.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.5amchoi8lso0, REQUEST_URI: /2022/05/03/موقع-بريطاني-تسريبات-نادية-عكاشة-تعكس/j9jiuyouhui.com 2023-12-24 21:04:54 PST (DEBUG): No posts or pages matching slug: j9jiuyouhui.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (51 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'j9jiuyouhui com', '2022 05 03 \xD9\x85\xD9\x88...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/05/03/\xD9\x85\xD9\x88...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/05/03/\xD9\x85\xD9\x88...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/10/14/%D8%A8%D9%85%D8%B4%D8%A7%D8%B1%D9%83%D8%A9-%D8%AD%D8%A7%D8%AE%D8%A7%D9%85%D8%A7%D8%AA-%D9%88%D9%82%D8%B3%D8%A7%D9%88%D8%B3%D8%A9-%D8%A7%D8%A8%D9%86-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D9%81%D8%AA%D8%AD/aiyouxity168.com, Stored debug messages: 2023-12-24 21:03:21 PST (DEBUG): Processing 404 for URL: /2020/10/14/بمشاركة-حاخامات-وقساوسة-ابن-سلمان-فتح/aiyouxity168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.58fvr7j8njt0, REQUEST_URI: /2020/10/14/بمشاركة-حاخامات-وقساوسة-ابن-سلمان-فتح/aiyouxity168.com 2023-12-24 21:03:22 PST (DEBUG): No posts or pages matching slug: aiyouxity168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (144 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'aiyouxity168 co...', '2020 10 14 \xD8\xA8\xD9\x85...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/10/14/\xD8\xA8\xD9\x85...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/10/14/\xD8\xA8\xD9\x85...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2015/04/13/%D8%AF%D8%A7%D8%B9%D8%B4-%D9%8A%D8%AD%D8%AA%D9%84-%D8%A7%D8%AC%D8%B2%D8%A7%D8%A1-%D9%85%D9%86-%D9%85%D8%B5%D9%81%D8%A7%D8%A9-%D8%A8%D9%8A%D8%AC%D9%8A-%D8%A7%D9%84%D9%86%D9%81%D8%B7%D9%8A%D8%A9-%D9%88/kokty168.com, Stored debug messages: 2023-12-24 21:03:28 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2015/04/13/داعش-يحتل-اجزاء-من-مصفاة-بيجي-النفطية-و/kokty168.com 2023-12-24 21:03:28 PST (DEBUG): Processing 404 for URL: /2015/04/13/داعش-يحتل-اجزاء-من-مصفاة-بيجي-النفطية-و/kokty168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2015/04/13/داعش-يحتل-اجزاء-من-مصفاة-بيجي-النفطية-و/kokty168.com 2023-12-24 21:03:29 PST (DEBUG): No posts or pages matching slug: kokty168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (136.71 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kokty168 com', '2015 04 13 \xD8\xAF\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2015/04/13/\xD8\xAF\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2015/04/13/\xD8\xAF\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/04/27/%D8%A2%D8%AB%D8%A7%D8%B1-%D8%A7%D9%84%D8%AA%D8%B9%D8%B0%D9%8A%D8%A8-%D8%AA%D8%B8%D9%87%D8%B1-%D8%B9%D9%84%D9%89-%D8%A7%D9%84%D9%85%D8%B9%D8%AA%D9%82%D9%84-%D9%86%D8%A7%D8%B5%D8%B1-%D8%A8%D9%86-%D8%BA/yxty168.org, Stored debug messages: 2023-12-24 21:03:06 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/04/27/آثار-التعذيب-تظهر-على-المعتقل-ناصر-بن-غ/yxty168.org 2023-12-24 21:03:06 PST (DEBUG): Processing 404 for URL: /2016/04/27/آثار-التعذيب-تظهر-على-المعتقل-ناصر-بن-غ/yxty168.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.2eecmeqd33q0, REQUEST_URI: /2016/04/27/آثار-التعذيب-تظهر-على-المعتقل-ناصر-بن-غ/yxty168.org 2023-12-24 21:03:07 PST (DEBUG): No posts or pages matching slug: yxty168.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (158.6 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'yxty168 org', '2016 04 27 \xD8\xA2\xD8\xAB...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/04/27/\xD8\xA2\xD8\xAB...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/04/27/\xD8\xA2\xD8\xAB...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/03/01/%D8%B2%D9%88%D8%AC%D8%A9-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D8%A3%D8%B3%D8%A7%D9%85%D8%A9-%D8%A7%D9%84%D8%AD%D8%B3%D9%86%D9%8A-%D8%AA%D9%83%D8%B4%D9%81-%D9%85%D8%A7-%D9%81%D8%B9%D9%84%D9%87/xingcaitiyu.tv, Stored debug messages: 2023-12-24 21:04:51 PST (DEBUG): Processing 404 for URL: /2021/03/01/زوجة-السعودي-أسامة-الحسني-تكشف-ما-فعله/xingcaitiyu.tv | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4ruce7vs32i0, REQUEST_URI: /2021/03/01/زوجة-السعودي-أسامة-الحسني-تكشف-ما-فعله/xingcaitiyu.tv 2023-12-24 21:04:52 PST (DEBUG): No posts or pages matching slug: xingcaitiyu.tv 2023-12-24 21:05:46 PST (DEBUG): Slow query (53.49 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'xingcaitiyu tv', '2021 03 01 \xD8\xB2\xD9\x88...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/03/01/\xD8\xB2\xD9\x88...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/03/01/\xD8\xB2\xD9\x88...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/10/21/%D8%A7%D9%84%D8%B3%D9%8A%D8%B3%D9%8A-%D9%88%D8%A7%D9%84%D8%B2%D9%8A%D8%A7%D8%AF%D8%A9-%D8%A7%D9%84%D8%B3%D9%83%D8%A7%D9%86%D9%8A%D8%A9/imty.org, Stored debug messages: 2023-12-24 21:02:34 PST (DEBUG): Processing 404 for URL: /2019/10/21/السيسي-والزيادة-السكانية/imty.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.mf44homk8200, REQUEST_URI: /2019/10/21/السيسي-والزيادة-السكانية/imty.org 2023-12-24 21:02:35 PST (DEBUG): No posts or pages matching slug: imty.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (191.21 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'imty org', '2019 10 21 \xD8\xA7\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/10/21/\xD8\xA7\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/10/21/\xD8\xA7\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/08/10/%D8%B3%D9%85%D9%8A%D8%A9-%D8%A7%D9%84%D8%AE%D8%B4%D8%A7%D8%A8-%D9%84%D9%85%D8%AA%D8%A7%D8%A8%D8%B9%D8%A9-%D8%B3%D8%A3%D9%84%D8%AA%D9%87%D8%A7-%D8%B9%D9%86-%D8%B9%D9%84%D8%A7%D8%AC-%D8%A7%D9%84%D8%B1/%E5%BC%80%E4%BA%91%E4%BD%93%E8%82%B2%E5%B9%B3%E5%8F%B0.com, Stored debug messages: 2023-12-24 21:03:39 PST (DEBUG): Processing 404 for URL: /2021/08/10/سمية-الخشاب-لمتابعة-سألتها-عن-علاج-الر/开云体育平台.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.3f94hf8lb830, REQUEST_URI: /2021/08/10/سمية-الخشاب-لمتابعة-سألتها-عن-علاج-الر/开云体育平台.com 2023-12-24 21:03:40 PST (DEBUG): No posts or pages matching slug: 开云体育平台.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (125.93 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xE5\xBC\x80\xE4\xBA\x91\xE4\xBD\x93\xE8\x82\xB2\xE5\xB9\xB3...', '2021 08 10 \xD8\xB3\xD9\x85...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/08/10/\xD8\xB3\xD9\x85...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/08/10/\xD8\xB3\xD9\x85...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:05:18 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6.1 Safari/605.1.15, REMOTE_ADDR: 88.243.0.2carvkpp5av0, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:05:19 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (26.74 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:04:19 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36 OPR/105.0.0.0, REMOTE_ADDR: 2001:67c:2660:15ma12obqq68, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:04:20 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:05:46 PST (DEBUG): Slow query (85.55 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'superpwa sw js', '', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /watan/2022/12/15/%D8%A7%D9%84%D9%86%D8%AC%D9%85%D8%A9-%D8%A7%D9%84%D8%B9%D8%A7%D9%84%D9%85%D9%8A%D8%A9-%D8%B1%D9%8A%D8%A8%D9%8A%D9%84-%D9%88%D9%8A%D9%84%D8%B3%D9%88%D9%86-%D8%AA%D8%B9%D8%AA%D8%B1%D9%81-%D9%82%D8%A8/, Stored debug messages: 2023-12-24 21:03:21 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /watan/2022/12/15/النجمة-العالمية-ريبيل-ويلسون-تعترف-قب/ 2023-12-24 21:03:21 PST (DEBUG): Processing 404 for URL: /watan/2022/12/15/النجمة-العالمية-ريبيل-ويلسون-تعترف-قب/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 213.180.203.2carvkpp5av0, REQUEST_URI: /watan/2022/12/15/النجمة-العالمية-ريبيل-ويلسون-تعترف-قب/ 2023-12-24 21:03:22 PST (DEBUG): No posts or pages matching slug: النجمة-العالمية-ريبيل-ويلسون-تعترف-قب 2023-12-24 21:05:46 PST (DEBUG): Slow query (144.15 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, '\xD8\xA7\xD9\x84\xD9\x86\xD8\xAC\xD9\x85\xD8\xA9 \xD8\xA7...', 'watan 2022 12 1...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('watan/2022/12/1...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('watan/2022/12/1...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/10/08/%D9%83%D8%AA%D8%A7%D8%A6%D8%A8-%D8%B3%D8%B9%D9%88%D8%AF-%D8%A7%D9%84%D9%82%D8%AD%D8%B7%D8%A7%D9%86%D9%8A-%D8%A7%D9%84%D8%A5%D9%84%D9%83%D8%AA%D8%B1%D9%88%D9%86%D9%8A%D8%A9-%D8%AA%D8%AD%D8%B1%D8%B6/jnty168.net, Stored debug messages: 2023-12-24 21:03:12 PST (DEBUG): Processing 404 for URL: /2017/10/08/كتائب-سعود-القحطاني-الإلكترونية-تحرض/jnty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4ou4rgg881j0, REQUEST_URI: /2017/10/08/كتائب-سعود-القحطاني-الإلكترونية-تحرض/jnty168.net 2023-12-24 21:03:13 PST (DEBUG): No posts or pages matching slug: jnty168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (152.79 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'jnty168 net', '2017 10 08 \xD9\x83\xD8\xAA...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/10/08/\xD9\x83\xD8\xAA...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/10/08/\xD9\x83\xD8\xAA...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/, Requested URL: /wp-content/cache/minify/f13d0.css, Stored debug messages: 2023-12-24 21:05:29 PST (DEBUG): Processing 404 for URL: /wp-content/cache/minify/f13d0.css | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 13; SAMSUNG SM-A037F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/23.0 Chrome/115.0.0.0 Mobile Safari/537.36, REMOTE_ADDR: 37.40.220.55iviga0nm00, REQUEST_URI: /wp-content/cache/minify/f13d0.css 2023-12-24 21:05:30 PST (DEBUG): No posts or pages matching slug: f13d0.css 2023-12-24 21:05:46 PST (DEBUG): Slow query (15.62 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'f13d0 css', 'wp content cach...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/cach...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/cach...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/07/25/%D9%87%D8%A7%D9%86%D9%8A-%D8%A7%D9%84%D8%B3%D8%A8%D8%A7%D8%B9%D9%8A-%D8%AD%D9%83%D8%A7%D9%85-%D8%A7%D9%84%D8%B9%D8%B1%D8%A8-%D8%A7%D9%84%D9%85%D8%AA%D8%A2%D9%85%D8%B1%D9%8A%D9%86-%D8%A8%D9%85%D8%A4/kaiyuanqp.net, Stored debug messages: 2023-12-24 21:03:49 PST (DEBUG): Processing 404 for URL: /2016/07/25/هاني-السباعي-حكام-العرب-المتآمرين-بمؤ/kaiyuanqp.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.352auk7meal0, REQUEST_URI: /2016/07/25/هاني-السباعي-حكام-العرب-المتآمرين-بمؤ/kaiyuanqp.net 2023-12-24 21:03:50 PST (DEBUG): No posts or pages matching slug: kaiyuanqp.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (116.02 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyuanqp net', '2016 07 25 \xD9\x87\xD8\xA7...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/07/25/\xD9\x87\xD8\xA7...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/07/25/\xD9\x87\xD8\xA7...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/11/21/%D8%B5%D9%88%D8%B1%D8%A9-%D8%A7%D9%84%D9%85%D9%85%D8%AB%D9%84%D8%A9-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A%D8%A9-%D9%86%D8%B5%D8%B1%D8%A9-%D8%A7%D9%84%D8%AD%D8%B1%D8%A8%D9%8A-%D9%85%D8%B9-%D8%B5/ag-zunlongkaishi.net, Stored debug messages: 2023-12-24 21:04:04 PST (DEBUG): Processing 404 for URL: /2017/11/21/صورة-الممثلة-السعودية-نصرة-الحربي-مع-ص/ag-zunlongkaishi.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4ou4rgg881j0, REQUEST_URI: /2017/11/21/صورة-الممثلة-السعودية-نصرة-الحربي-مع-ص/ag-zunlongkaishi.net 2023-12-24 21:04:05 PST (DEBUG): No posts or pages matching slug: ag-zunlongkaishi.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (100.76 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'ag zunlongkaish...', '2017 11 21 \xD8\xB5\xD9\x88...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/11/21/\xD8\xB5\xD9\x88...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/11/21/\xD8\xB5\xD9\x88...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/01/29/%D8%A3%D8%BA%D8%B1%D8%A8-%D8%AF%D8%B9%D9%88%D9%89-%D9%86%D9%81%D9%82%D8%A9-%D9%85%D9%86-%D8%B3%D9%8A%D8%AF%D8%A9-%D8%B9%D8%B1%D8%A8%D9%8A%D8%A9-%D8%B6%D8%AF-%D8%B7%D9%84%D9%8A%D9%82%D9%87%D8%A7/xcai168.net, Stored debug messages: 2023-12-24 21:03:28 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/01/29/أغرب-دعوى-نفقة-من-سيدة-عربية-ضد-طليقها/xcai168.net 2023-12-24 21:03:28 PST (DEBUG): Processing 404 for URL: /2023/01/29/أغرب-دعوى-نفقة-من-سيدة-عربية-ضد-طليقها/xcai168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4oebmpvghfo0, REQUEST_URI: /2023/01/29/أغرب-دعوى-نفقة-من-سيدة-عربية-ضد-طليقها/xcai168.net 2023-12-24 21:03:29 PST (DEBUG): No posts or pages matching slug: xcai168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (136.83 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'xcai168 net', '2023 01 29 \xD8\xA3\xD8\xBA...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/01/29/\xD8\xA3\xD8\xBA...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/01/29/\xD8\xA3\xD8\xBA...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/10/18/%D8%B9%D9%84%D8%A7%D8%AC-%D8%A7%D9%84%D8%B6%D8%B9%D9%81-%D8%A7%D9%84%D8%AC%D9%86%D8%B3%D9%8A-%D9%88%D8%B3%D8%B1%D8%B9%D8%A9-%D8%A7%D9%84%D9%82%D8%B0%D9%81-%D8%B9%D9%86%D8%AF-%D8%A7%D9%84%D8%B1%D8%AC/pmzr.org, Stored debug messages: 2023-12-24 21:02:42 PST (DEBUG): Processing 404 for URL: /2016/10/18/علاج-الضعف-الجنسي-وسرعة-القذف-عند-الرج/pmzr.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.7cpf47siqss0, REQUEST_URI: /2016/10/18/علاج-الضعف-الجنسي-وسرعة-القذف-عند-الرج/pmzr.org 2023-12-24 21:02:43 PST (DEBUG): No posts or pages matching slug: pmzr.org 2023-12-24 21:05:46 PST (DEBUG): Slow query (183.08 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pmzr org', '2016 10 18 \xD8\xB9\xD9\x84...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/10/18/\xD8\xB9\xD9\x84...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/10/18/\xD8\xB9\xD9\x84...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/03/30/%D9%87%D8%B0%D9%87-%D8%A3%D8%A8%D8%B1%D8%B2-5-%D9%85%D8%B4%D8%B1%D9%88%D8%A8%D8%A7%D8%AA-%D8%AA%D8%AD%D9%85%D9%8A-%D9%85%D9%86-%D8%A7%D9%84%D8%B3%D8%B1%D8%B7%D8%A7%D9%86/wanbo168.net, Stored debug messages: 2023-12-24 21:02:38 PST (DEBUG): Processing 404 for URL: /2016/03/30/هذه-أبرز-5-مشروبات-تحمي-من-السرطان/wanbo168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.621baderv9f0, REQUEST_URI: /2016/03/30/هذه-أبرز-5-مشروبات-تحمي-من-السرطان/wanbo168.net 2023-12-24 21:02:39 PST (DEBUG): No posts or pages matching slug: wanbo168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (186.84 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'wanbo168 net', '2016 03 30 \xD9\x87\xD8\xB0...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/03/30/\xD9\x87\xD8\xB0...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/03/30/\xD9\x87\xD8\xB0...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/06/16/%D8%AA%D8%B1%D9%83%D9%8A-%D8%A2%D9%84-%D8%A7%D9%84%D8%B4%D9%8A%D8%AE-%D8%A3%D9%85%D8%B1-%D8%A8%D8%AD%D8%A8%D8%B3-%D8%A7%D9%84%D9%84%D8%A7%D8%B9%D8%A8%D9%8A%D9%86-%D9%81%D9%8A-%D8%BA%D8%B1%D9%81%D8%A9/kaiyun.work, Stored debug messages: 2023-12-24 21:05:04 PST (DEBUG): Processing 404 for URL: /2018/06/16/تركي-آل-الشيخ-أمر-بحبس-اللاعبين-في-غرفة/kaiyun.work | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html), REMOTE_ADDR: 85.208.96.39ln0u21vnv0, REQUEST_URI: /2018/06/16/تركي-آل-الشيخ-أمر-بحبس-اللاعبين-في-غرفة/kaiyun.work 2023-12-24 21:05:04 PST (DEBUG): No posts or pages matching slug: kaiyun.work 2023-12-24 21:05:46 PST (DEBUG): Slow query (41.4 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'kaiyun work', '2018 06 16 \xD8\xAA\xD8\xB1...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/06/16/\xD8\xAA\xD8\xB1...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/06/16/\xD8\xAA\xD8\xB1...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/10/16/%D8%AF%D8%B1%D8%A7%D8%B3%D8%A9-%D8%AD%D8%AF%D9%8A%D8%AB%D8%A9-%D8%A7%D9%84%D9%84%D8%A7%D8%AF%D9%8A%D9%86%D9%8A%D8%A9-%D9%81%D9%8A-%D8%A7%D9%84%D9%85%D8%BA%D8%B1%D8%A8-%D8%B8%D8%A7%D9%87%D8%B1/aiyouxi.one, Stored debug messages: 2023-12-24 21:03:54 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/10/16/دراسة-حديثة-اللادينية-في-المغرب-ظاهر/aiyouxi.one 2023-12-24 21:03:54 PST (DEBUG): Processing 404 for URL: /2016/10/16/دراسة-حديثة-اللادينية-في-المغرب-ظاهر/aiyouxi.one | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.33rhvd208d7g, REQUEST_URI: /2016/10/16/دراسة-حديثة-اللادينية-في-المغرب-ظاهر/aiyouxi.one 2023-12-24 21:03:55 PST (DEBUG): No posts or pages matching slug: aiyouxi.one 2023-12-24 21:05:46 PST (DEBUG): Slow query (110.49 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'aiyouxi one', '2016 10 16 \xD8\xAF\xD8\xB1...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/10/16/\xD8\xAF\xD8\xB1...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/10/16/\xD8\xAF\xD8\xB1...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tag/%D8%A3%D8%B3%D8%B9%D8%A7%D8%B1-%D8%AA%D8%B0%D8%A7%D9%83%D8%B1-%D9%85%D9%88%D9%86%D8%AF%D9%8A%D8%A7%D9%84-%D9%82%D8%B7%D8%B1/pmzr168.com, Stored debug messages: 2023-12-24 21:03:06 PST (DEBUG): Processing 404 for URL: /tag/أسعار-تذاكر-مونديال-قطر/pmzr168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.679mbr07le50, REQUEST_URI: /tag/أسعار-تذاكر-مونديال-قطر/pmzr168.com 2023-12-24 21:03:07 PST (DEBUG): No posts or pages matching slug: pmzr168.com 2023-12-24 21:05:46 PST (DEBUG): Slow query (158.95 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'pmzr168 com', 'tag \xD8\xA3\xD8\xB3\xD8\xB9\xD8\xA7\xD8\xB1 ...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tag/\xD8\xA3\xD8\xB3\xD8\xB9\xD8\xA7\xD8\xB1-...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tag/\xD8\xA3\xD8\xB3\xD8\xB9\xD8\xA7\xD8\xB1-...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:06:13 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql BEGIN ----- */ select wp_terms.term_id, wp_terms.name, wp_terms.slug, wp_term_taxonomy.taxonomy, wp_term_taxonomy.count, 'in code' as url from wp_terms wp_terms left outer join wp_term_taxonomy wp_term_taxonomy on wp_terms.term_id = wp_term_taxonomy.term_id where ( wp_term_taxonomy.taxonomy = 'post_tag' ) and wp_term_taxonomy.count >= 1 /* only include this line if a slug has been specified. e.g. and wp_terms.slug = 'about' /* */ order by wp_terms.name /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedTags.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/10/11/%D8%B2%D8%B9%D9%8A%D9%85-%D8%A7%D9%84%D9%85%D8%B4%D8%A7%D8%B9%D8%B1-%D8%A7%D9%84%D8%B3%D9%8A%D8%A6%D8%A9/wanbo168.net, Stored debug messages: 2023-12-24 21:03:41 PST (DEBUG): Processing 404 for URL: /2016/10/11/زعيم-المشاعر-السيئة/wanbo168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4ou4rgg881j0, REQUEST_URI: /2016/10/11/زعيم-المشاعر-السيئة/wanbo168.net 2023-12-24 21:03:41 PST (DEBUG): No posts or pages matching slug: wanbo168.net 2023-12-24 21:05:46 PST (DEBUG): Slow query (124.39 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:05:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:05:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1826): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(551): ABJ_404_Solution_DataAccess->getPublishedTags() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'wanbo168 net', '2016 10 11 \xD8\xB2\xD8\xB9...', 'tags') #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/10/11/\xD8\xB2\xD8\xB9...', '1', '1') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/10/11/\xD8\xB2\xD8\xB9...') #5 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #10 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #11 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #12 {main} 2023-12-24 21:08:50 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 8), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/07/25/%D8%AC%D9%84%D8%A7%D9%84-%D8%B4%D9%87%D8%AF%D8%A9-%D9%84%D9%85-%D8%A3%D9%83%D9%86-%D8%A3%D8%AA%D9%88%D9%82%D8%B9-%D8%A3%D8%A8%D8%AF%D8%A7-%D8%A3%D9%86-%D8%AA%D8%B5%D8%AF%D8%B1-%D8%A7%D9%84%D8%B3/imty.org, Stored debug messages: 2023-12-24 21:07:54 PST (DEBUG): Processing 404 for URL: /2016/07/25/جلال-شهدة-لم-أكن-أتوقع-أبدا-أن-تصدر-الس/imty.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.5amchoi8lso0, REQUEST_URI: /2016/07/25/جلال-شهدة-لم-أكن-أتوقع-أبدا-أن-تصدر-الس/imty.org 2023-12-24 21:07:56 PST (DEBUG): No posts or pages matching slug: imty.org 2023-12-24 21:08:03 PST (DEBUG): Slow query (7.47 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:08:22 PST (DEBUG): Slow query (18.67 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2023-12-24 21:08:27 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(8, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(8) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(555): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('imty org', '2016 07 25 \xD8\xAC\xD9\x84...', 'tags', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(419): ABJ_404_Solution_SpellChecker->matchOnTags(Array, 'imty org', '2016 07 25 \xD8\xAC\xD9\x84...', 'tags') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/07/25/\xD8\xAC\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/07/25/\xD8\xAC\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2023-12-24 21:14:19 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1741): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 100...', ' */\n order by ...', ' */\n and abs(pl...') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, 4) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(836): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14, 1000, 4) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(588): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('superpwa sw js', '', 'pages') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(405): ABJ_404_Solution_SpellChecker->matchOnPosts(Array, 'superpwa-sw.js', 'superpwa sw js', '', 'pages') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Likely match IDs processing permalink: /2013/02/15/35/, $wasntReadyCount: 0", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:13:52 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (iPhone; CPU iPhone OS 17_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.1.2 Mobile/15E148 Safari/604.1, REMOTE_ADDR: 104.49.190.ak643op0huu0, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:13:52 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:14:00 PST (DEBUG): Slow query (8.7 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:14:17 PST (DEBUG): Slow query (17.05 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:19 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1741): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(588): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('superpwa sw js', '', 'pages') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(405): ABJ_404_Solution_SpellChecker->matchOnPosts(Array, 'superpwa-sw.js', 'superpwa sw js', '', 'pages') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:13:51 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36, REMOTE_ADDR: 78.100.150.53ope2it1720, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:13:52 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:14:01 PST (DEBUG): Slow query (9.58 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:14:19 PST (DEBUG): Slow query (18.1 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:20 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1741): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(588): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('superpwa sw js', '', 'pages') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(405): ABJ_404_Solution_SpellChecker->matchOnPosts(Array, 'superpwa-sw.js', 'superpwa sw js', '', 'pages') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:13:52 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36, REMOTE_ADDR: 78.100.143.5t9idbec7la0, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:13:52 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:14:02 PST (DEBUG): Slow query (10.3 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:14:20 PST (DEBUG): Slow query (18.24 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:24 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/04/11/\xD9\x85\xD9\x88...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/04/11/\xD9\x85\xD9\x88...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/04/11/%D9%85%D9%88%D8%B9%D8%AF-%D9%85%D8%A8%D8%A7%D8%B1%D8%A7%D8%A9-%D8%A8%D8%A7%D9%8A%D8%B1%D9%86-%D9%85%D9%8A%D9%88%D9%86%D8%AE-%D9%88%D9%81%D9%8A%D8%A7%D8%B1%D9%8A%D8%A7%D9%84-%D9%88%D8%A7%D9%84%D9%82/luyutiyu.com, Stored debug messages: 2023-12-24 21:13:52 PST (DEBUG): Processing 404 for URL: /2022/04/11/موعد-مباراة-بايرن-ميونخ-وفياريال-والق/luyutiyu.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.25oi6csbhdg0, REQUEST_URI: /2022/04/11/موعد-مباراة-بايرن-ميونخ-وفياريال-والق/luyutiyu.com 2023-12-24 21:13:53 PST (DEBUG): No posts or pages matching slug: luyutiyu.com 2023-12-24 21:14:24 PST (DEBUG): Slow query (30.6 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:30 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('not-found', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('not-found') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /not-found, Stored debug messages: 2023-12-24 21:13:53 PST (DEBUG): Processing 404 for URL: /not-found | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; proximic; +https://www.comscore.com/Web-Crawler), REMOTE_ADDR: 3.82.5.6mfm5b9t6110, REQUEST_URI: /not-found 2023-12-24 21:13:54 PST (DEBUG): No posts or pages matching slug: not-found 2023-12-24 21:14:30 PST (DEBUG): Slow query (36.56 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:35 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1741): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(588): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pmtiyu168 com', '2023 04 17 \xD8\xAC\xD9\x88...', 'pages') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(405): ABJ_404_Solution_SpellChecker->matchOnPosts(Array, '2023/04/17/\xD8\xAC\xD9\x88...', 'pmtiyu168 com', '2023 04 17 \xD8\xAC\xD9\x88...', 'pages') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/04/17/\xD8\xAC\xD9\x88...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/04/17/\xD8\xAC\xD9\x88...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/04/17/%D8%AC%D9%88%D8%B1%D8%AC%D9%8A%D9%86%D8%A7-%D8%AA%D8%B9%D8%B1%D8%B6-%D9%85%D8%A4%D8%AE%D8%B1%D8%AA%D9%87%D8%A7-%D8%A8%D8%B7%D8%B1%D9%8A%D9%82%D8%A9-%D9%85%D8%AB%D9%8A%D8%B1%D8%A9-%D9%81%D9%8A-%D8%B5/pmtiyu168.com, Stored debug messages: 2023-12-24 21:13:52 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /2023/04/17/جورجينا-تعرض-مؤخرتها-بطريقة-مثيرة-في-ص/pmtiyu168.com 2023-12-24 21:13:52 PST (DEBUG): Processing 404 for URL: /2023/04/17/جورجينا-تعرض-مؤخرتها-بطريقة-مثيرة-في-ص/pmtiyu168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /2023/04/17/جورجينا-تعرض-مؤخرتها-بطريقة-مثيرة-في-ص/pmtiyu168.com 2023-12-24 21:13:53 PST (DEBUG): No posts or pages matching slug: pmtiyu168.com 2023-12-24 21:14:17 PST (DEBUG): Slow query (24.39 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2023-12-24 21:14:35 PST (DEBUG): Slow query (18.08 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:38 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/01/21/\xD9\x84\xD9\x84...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/01/21/\xD9\x84\xD9\x84...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/01/21/%D9%84%D9%84%D9%85%D8%B3%D8%A7%D8%B9%D8%AF%D8%A9-%D9%81%D9%8A-%D9%81%D9%87%D9%85-%D9%82%D8%B6%D8%A7%D9%8A%D8%A7-%D8%A7%D9%84%D9%85%D8%AB%D9%84%D9%8A%D9%8A%D9%86-%D8%A7%D9%84%D9%85%D8%AA%D8%AD%D9%88/ag-baccarat.live, Stored debug messages: 2023-12-24 21:13:54 PST (DEBUG): Processing 404 for URL: /2017/01/21/للمساعدة-في-فهم-قضايا-المثليين-المتحو/ag-baccarat.live | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html), REMOTE_ADDR: 185.191.171.4ruce7vs32i0, REQUEST_URI: /2017/01/21/للمساعدة-في-فهم-قضايا-المثليين-المتحو/ag-baccarat.live 2023-12-24 21:13:54 PST (DEBUG): No posts or pages matching slug: ag-baccarat.live 2023-12-24 21:14:38 PST (DEBUG): Slow query (43.34 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:42 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.19, Requested URL: /superpwa-sw.js?2.2.19, Stored debug messages: 2023-12-24 21:13:55 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_19= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36, REMOTE_ADDR: 2600:1700:5170:79l9s2iauo10, REQUEST_URI: /superpwa-sw.js?2.2.19 2023-12-24 21:13:55 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:14:42 PST (DEBUG): Slow query (46.84 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:44 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('puma-rs-fast-ca...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('puma-rs-fast-ca...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /puma-rs-fast-caliente-taqueria-taco-tuesday-size-11-5-tigerlily-barbados-381505-RUBDFkBUQlRYQl1D, Stored debug messages: 2023-12-24 21:13:55 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /puma-rs-fast-caliente-taqueria-taco-tuesday-size-11-5-tigerlily-barbados-381505-RUBDFkBUQlRYQl1D 2023-12-24 21:13:55 PST (DEBUG): Processing 404 for URL: /puma-rs-fast-caliente-taqueria-taco-tuesday-size-11-5-tigerlily-barbados-381505-RUBDFkBUQlRYQl1D | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /puma-rs-fast-caliente-taqueria-taco-tuesday-size-11-5-tigerlily-barbados-381505-RUBDFkBUQlRYQl1D 2023-12-24 21:13:56 PST (DEBUG): No posts or pages matching slug: puma-rs-fast-caliente-taqueria-taco-tuesday-size-11-5-tigerlily-barbados-381505-RUBDFkBUQlRYQl1D 2023-12-24 21:14:44 PST (DEBUG): Slow query (47.91 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:47 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:13:56 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36, REMOTE_ADDR: 37.41.43.4g7jki4nua80, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:13:56 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:14:47 PST (DEBUG): Slow query (51.49 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:48 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/02/15/\xD8\xAA\xD8\xB4...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/02/15/\xD8\xAA\xD8\xB4...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/02/15/%D8%AA%D8%B4%D9%83%D9%8A%D9%84%D8%A9-%D8%A8%D8%B1%D8%B4%D9%84%D9%88%D9%86%D8%A9-%D8%B6%D8%AF-%D9%85%D8%A7%D9%86%D8%B4%D8%B3%D8%AA%D8%B1-%D9%8A%D9%88%D9%86%D8%A7%D9%8A%D8%AA%D8%AF-%D9%81%D9%8A-%D8%A8/j9jyh.net, Stored debug messages: 2023-12-24 21:13:56 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/02/15/تشكيلة-برشلونة-ضد-مانشستر-يونايتد-في-ب/j9jyh.net 2023-12-24 21:13:56 PST (DEBUG): Processing 404 for URL: /2023/02/15/تشكيلة-برشلونة-ضد-مانشستر-يونايتد-في-ب/j9jyh.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.75c1gn896mc0, REQUEST_URI: /2023/02/15/تشكيلة-برشلونة-ضد-مانشستر-يونايتد-في-ب/j9jyh.net 2023-12-24 21:13:57 PST (DEBUG): No posts or pages matching slug: j9jyh.net 2023-12-24 21:14:48 PST (DEBUG): Slow query (50.8 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:48 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:13:57 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:121.0) Gecko/20100101 Firefox/121.0, REMOTE_ADDR: 193.190.151.74r8tnveue40, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:13:57 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:14:48 PST (DEBUG): Slow query (51.93 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:50 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/02/14/\xD8\xB9\xD8\xA7...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/02/14/\xD8\xB9\xD8\xA7...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/02/14/%D8%B9%D8%A7%D9%84%D9%85-%D8%B9%D8%B1%D8%A8%D9%8A-%D9%8A%D9%81%D8%A7%D8%AC%D8%A6-%D8%A7%D9%84%D8%AC%D9%85%D9%8A%D8%B9-%D9%88%D9%8A%D9%83%D8%B4%D9%81-%D8%AE%D8%AF%D8%B9%D8%A9-%D8%A7%D9%84%D9%83%D8%A7/luyutiyu.com, Stored debug messages: 2023-12-24 21:13:58 PST (DEBUG): Processing 404 for URL: /2023/02/14/عالم-عربي-يفاجئ-الجميع-ويكشف-خدعة-الكا/luyutiyu.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.3f94hf8lb830, REQUEST_URI: /2023/02/14/عالم-عربي-يفاجئ-الجميع-ويكشف-خدعة-الكا/luyutiyu.com 2023-12-24 21:13:59 PST (DEBUG): No posts or pages matching slug: luyutiyu.com 2023-12-24 21:14:50 PST (DEBUG): Slow query (51.62 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:50 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2015/12/29/1649...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2015/12/29/1649...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2015/12/29/16497/kaiyun.work, Stored debug messages: 2023-12-24 21:13:57 PST (DEBUG): Processing 404 for URL: /2015/12/29/16497/kaiyun.work | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.352auk7meal0, REQUEST_URI: /2015/12/29/16497/kaiyun.work 2023-12-24 21:13:58 PST (DEBUG): No posts or pages matching slug: kaiyun.work 2023-12-24 21:14:50 PST (DEBUG): Slow query (52.24 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:52 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('watan/2023/09/1...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('watan/2023/09/1...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /watan/2023/09/18/%D9%85%D9%8A%D8%A7%D9%86-%D8%A8%D9%86%D8%AA-%D8%B4%D9%87%D8%A7%D8%A8-%D8%B2%D9%88%D8%AC%D8%A9-%D8%B0%D9%8A-%D9%8A%D8%B2%D9%86-%D8%A8%D9%86-%D9%87%D9%8A%D8%AB%D9%85-%D8%A3%D9%84%D9%87%D9%85%D9%87%D8%A7/, Stored debug messages: 2023-12-24 21:13:58 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /watan/2023/09/18/ميان-بنت-شهاب-زوجة-ذي-يزن-بن-هيثم-ألهمها/ 2023-12-24 21:13:58 PST (DEBUG): Processing 404 for URL: /watan/2023/09/18/ميان-بنت-شهاب-زوجة-ذي-يزن-بن-هيثم-ألهمها/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 213.180.203.sjb01b74kr40, REQUEST_URI: /watan/2023/09/18/ميان-بنت-شهاب-زوجة-ذي-يزن-بن-هيثم-ألهمها/ 2023-12-24 21:13:58 PST (DEBUG): No posts or pages matching slug: ميان-بنت-شهاب-زوجة-ذي-يزن-بن-هيثم-ألهمها 2023-12-24 21:14:52 PST (DEBUG): Slow query (53.38 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:52 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tissot-womans-r...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tissot-womans-r...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tissot-womans-rolled-gold-watch-with-omega-band-watch-works-RkVCF09YQ1BcQFVA, Stored debug messages: 2023-12-24 21:13:59 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /tissot-womans-rolled-gold-watch-with-omega-band-watch-works-RkVCF09YQ1BcQFVA 2023-12-24 21:13:59 PST (DEBUG): Processing 404 for URL: /tissot-womans-rolled-gold-watch-with-omega-band-watch-works-RkVCF09YQ1BcQFVA | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /tissot-womans-rolled-gold-watch-with-omega-band-watch-works-RkVCF09YQ1BcQFVA 2023-12-24 21:14:00 PST (DEBUG): No posts or pages matching slug: tissot-womans-rolled-gold-watch-with-omega-band-watch-works-RkVCF09YQ1BcQFVA 2023-12-24 21:14:52 PST (DEBUG): Slow query (52.41 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:52 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/08/18/\xD8\xA7\xD9\x84...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/08/18/\xD8\xA7\xD9\x84...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/08/18/%D8%A7%D9%84%D8%B4%D8%B1%D9%8A%D9%85-%D9%8A%D8%B7%D8%A8%D9%84-%D9%84%D9%84%D9%85%D9%84%D9%83-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D9%88%D9%88%D9%84%D9%8A-%D8%B9%D9%87%D8%AF%D9%87-%D8%A7%D9%84%D9%84%D9%87/imty.org, Stored debug messages: 2023-12-24 21:13:59 PST (DEBUG): Processing 404 for URL: /2018/08/18/الشريم-يطبل-للملك-سلمان-وولي-عهده-الله/imty.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4ruce7vs32i0, REQUEST_URI: /2018/08/18/الشريم-يطبل-للملك-سلمان-وولي-عهده-الله/imty.org 2023-12-24 21:14:00 PST (DEBUG): No posts or pages matching slug: imty.org 2023-12-24 21:14:52 PST (DEBUG): Slow query (52.13 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:52 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:13:59 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 13; SM-A225F Build/TP1A.220624.014; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/120.0.6099.43 Mobile Safari/537.36, REMOTE_ADDR: 2001:1670:10:1c08v2ln8aqg, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:14:00 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:14:52 PST (DEBUG): Slow query (52.9 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:53 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/06/18/\xD9\x83\xD9\x84...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/06/18/\xD9\x83\xD9\x84...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/06/18/%D9%83%D9%84-%D9%85%D8%A7-%D8%AA%D8%B1%D9%8A%D8%AF-%D9%85%D8%B9%D8%B1%D9%81%D8%AA%D9%87-%D8%B9%D9%86-%D9%81%D8%A7%D8%AC%D8%B9%D8%A9-%D8%BA%D8%B1%D9%82-%D8%B3%D9%81%D9%8A%D9%86%D8%A9-%D8%A7%D9%84%D9%8A/shaba188.net, Stored debug messages: 2023-12-24 21:14:03 PST (DEBUG): Processing 404 for URL: /2023/06/18/كل-ما-تريد-معرفته-عن-فاجعة-غرق-سفينة-الي/shaba188.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.3f94hf8lb830, REQUEST_URI: /2023/06/18/كل-ما-تريد-معرفته-عن-فاجعة-غرق-سفينة-الي/shaba188.net 2023-12-24 21:14:03 PST (DEBUG): No posts or pages matching slug: shaba188.net 2023-12-24 21:14:53 PST (DEBUG): Slow query (49.27 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:53 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/137715_0.jpg, Stored debug messages: 2023-12-24 21:14:03 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/137715_0.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com), REMOTE_ADDR: 64.124.8.1k2sub73o7v0, REQUEST_URI: /wp-content/uploads/137715_0.jpg 2023-12-24 21:14:03 PST (DEBUG): No posts or pages matching slug: 137715_0.jpg 2023-12-24 21:14:53 PST (DEBUG): Slow query (49.31 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:53 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2019/01/post-390794-239297_0-674x430.jpg, Stored debug messages: 2023-12-24 21:14:02 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2019/01/post-390794-239297_0-674x430.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com), REMOTE_ADDR: 64.124.8.1k2sub73o7v0, REQUEST_URI: /wp-content/uploads/2019/01/post-390794-239297_0-674x430.jpg 2023-12-24 21:14:02 PST (DEBUG): No posts or pages matching slug: post-390794-239297_0-674x430.jpg 2023-12-24 21:14:53 PST (DEBUG): Slow query (50.56 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:53 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/05/11/\xD9\x85\xD8\xB6...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/05/11/\xD9\x85\xD8\xB6...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/05/11/%D9%85%D8%B6%D8%A7%D8%B9%D9%81%D8%A7%D8%AA%D9%87-%D8%AE%D8%B7%D8%B1%D8%A9-%D8%A3%D8%B9%D8%B1%D8%A7%D8%B6-%D8%AE%D9%81%D9%8A%D8%A9-%D9%84%D9%85%D8%B1%D8%B6-%D8%A7%D9%84%D8%B3%D9%83%D8%B1%D9%8A-%D8%AA/bdtiyu168.com, Stored debug messages: 2023-12-24 21:14:01 PST (DEBUG): Processing 404 for URL: /2017/05/11/مضاعفاته-خطرة-أعراض-خفية-لمرض-السكري-ت/bdtiyu168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.7cpf47siqss0, REQUEST_URI: /2017/05/11/مضاعفاته-خطرة-أعراض-خفية-لمرض-السكري-ت/bdtiyu168.com 2023-12-24 21:14:02 PST (DEBUG): No posts or pages matching slug: bdtiyu168.com 2023-12-24 21:14:53 PST (DEBUG): Slow query (51.11 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:53 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/01/27/\xD8\xA7\xD9\x84...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/01/27/\xD8\xA7\xD9\x84...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/01/27/%D8%A7%D9%84%D8%A5%D9%86%D8%AF%D8%A8%D9%86%D8%AF%D9%86%D8%AA-%D8%A8%D8%B4%D8%A7%D8%A6%D8%B1-%D8%AA%D8%B1%D8%A7%D9%85%D8%A8-%D8%AA%D9%82%D8%A7%D8%B1%D8%A8-%D8%BA%D9%8A%D8%B1-%D9%85%D8%B3%D8%A8/tbtiyu188.com, Stored debug messages: 2023-12-24 21:14:10 PST (DEBUG): Processing 404 for URL: /2017/01/27/الإندبندنت-بشائر-ترامب-تقارب-غير-مسب/tbtiyu188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.7cpf47siqss0, REQUEST_URI: /2017/01/27/الإندبندنت-بشائر-ترامب-تقارب-غير-مسب/tbtiyu188.com 2023-12-24 21:14:11 PST (DEBUG): No posts or pages matching slug: tbtiyu188.com 2023-12-24 21:14:53 PST (DEBUG): Slow query (42.24 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:53 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/10/12/\xD9\x87\xD8\xB0...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/10/12/\xD9\x87\xD8\xB0...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/10/12/%D9%87%D8%B0%D8%A7-%D9%85%D8%A7-%D8%AD%D8%AF%D8%AB-%D9%82%D8%A8%D9%84-%D8%B1%D8%AD%D9%8A%D9%84-%D9%85%D8%A8%D8%A7%D8%B1%D9%83-%D8%A8%D9%8011-%D9%8A%D9%88%D9%85%D8%A7-%D8%B1%D8%B3%D8%A7%D8%A6%D9%84/wanbo168.net, Stored debug messages: 2023-12-24 21:14:06 PST (DEBUG): Processing 404 for URL: /2020/10/12/هذا-ما-حدث-قبل-رحيل-مبارك-بـ11-يوما-رسائل/wanbo168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.v1ouqr6cggc0, REQUEST_URI: /2020/10/12/هذا-ما-حدث-قبل-رحيل-مبارك-بـ11-يوما-رسائل/wanbo168.net 2023-12-24 21:14:07 PST (DEBUG): No posts or pages matching slug: wanbo168.net 2023-12-24 21:14:53 PST (DEBUG): Slow query (46.59 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:53 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-sw.js', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-sw.js') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/superpwa-sw.js?2.2.20, Requested URL: /superpwa-sw.js?2.2.20, Stored debug messages: 2023-12-24 21:14:06 PST (DEBUG): Processing 404 for URL: /superpwa-sw.js?2_2_20= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36, REMOTE_ADDR: 185.139.196.64p913h85p40, REQUEST_URI: /superpwa-sw.js?2.2.20 2023-12-24 21:14:06 PST (DEBUG): No posts or pages matching slug: superpwa-sw.js 2023-12-24 21:14:53 PST (DEBUG): Slow query (46.84 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:53 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/09/07/\xD8\xA7\xD9\x84...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/09/07/\xD8\xA7\xD9\x84...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/09/07/%D8%A7%D9%84%D8%A3%D9%85%D9%8A%D8%B1-%D8%A7%D9%84%D8%AD%D8%B3%D9%8A%D9%86-%D9%8A%D9%84%D8%AA%D9%82%D9%8A-%D8%A8%D9%85%D8%AF%D8%B1%D8%B3-%D8%A7%D9%84%D8%AA%D8%B1%D8%A8%D9%8A%D8%A9-%D8%A7%D9%84%D8%A5/%E5%BC%80%E4%BA%91%E4%BD%93%E8%82%B2%E5%B9%B3%E5%8F%B0.com, Stored debug messages: 2023-12-24 21:14:10 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/09/07/الأمير-الحسين-يلتقي-بمدرس-التربية-الإ/开云体育平台.com 2023-12-24 21:14:10 PST (DEBUG): Processing 404 for URL: /2023/09/07/الأمير-الحسين-يلتقي-بمدرس-التربية-الإ/开云体育平台.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.56gjmetprfp0, REQUEST_URI: /2023/09/07/الأمير-الحسين-يلتقي-بمدرس-التربية-الإ/开云体育平台.com 2023-12-24 21:14:11 PST (DEBUG): No posts or pages matching slug: 开云体育平台.com 2023-12-24 21:14:53 PST (DEBUG): Slow query (42.38 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:53 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/12/25/\xD9\x85\xD9\x81...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/12/25/\xD9\x85\xD9\x81...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/12/25/%D9%85%D9%81%D8%A7%D9%88%D8%B6%D8%A7%D8%AA-%D9%85%D9%86-%D8%A3%D8%AC%D9%84-%D8%A5%D8%B1%D8%AC%D8%A7%D8%B9%D9%87%D8%A7-%D9%84%D9%84%D9%85%D9%85%D9%84%D9%83%D8%A9-%D9%88%D8%A7%D9%84%D8%AF%D8%A9-%D8%A7/bdtiyu168.net, Stored debug messages: 2023-12-24 21:14:08 PST (DEBUG): Processing 404 for URL: /2017/12/25/مفاوضات-من-أجل-إرجاعها-للمملكة-والدة-ا/bdtiyu168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.58fvr7j8njt0, REQUEST_URI: /2017/12/25/مفاوضات-من-أجل-إرجاعها-للمملكة-والدة-ا/bdtiyu168.net 2023-12-24 21:14:08 PST (DEBUG): No posts or pages matching slug: bdtiyu168.net 2023-12-24 21:14:53 PST (DEBUG): Slow query (45.12 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2023-12-24 21:14:53 PST (ERROR): ABJ404-SOLUTION Fatal error handler: {"type":1,"message":"Uncaught Exception: Error: Can't find file: /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql in /home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php:419 Stack trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(2118): ABJ_404_Solution_Functions::readFileContents('/home/watanser/...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PermalinkCache.php(74): ABJ_404_Solution_DataAccess->updatePermalinkCacheParentPages() #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(639): ABJ_404_Solution_PermalinkCache->updatePermalinkCache(1) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(400): ABJ_404_Solution_SpellChecker->initializePublishedPostsProvider() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/05/25/\xD9\x81\xD8\xB1...', '1', '1') #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/05/25/\xD9\x81\xD8\xB1...') #6 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #8 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #9 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #10 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #11 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #12 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #13 {main} thrown","file":"/home/watanser/public_html/wp-content/plugins/404-solution/includes/Functions.php","line":419}, Additional info: "Cleared after regex pattern to ignore.", mbstring: true, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/05/25/%D9%81%D8%B1%D8%A7%D9%86%D8%B3-%D8%A8%D8%B1%D8%B3-%D8%A7%D9%84%D9%86%D8%B8%D8%A7%D9%85-%D8%A7%D9%84%D9%85%D8%B5%D8%B1%D9%8A-%D9%8A%D9%83%D9%85%D9%85-%D8%A7%D9%84%D8%A7%D9%81%D9%88%D8%A7%D9%87/kaifayl.net, Stored debug messages: 2023-12-24 21:14:11 PST (DEBUG): Processing 404 for URL: /2017/05/25/فرانس-برس-النظام-المصري-يكمم-الافواه/kaifayl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.3gtvfitidgh0, REQUEST_URI: /2017/05/25/فرانس-برس-النظام-المصري-يكمم-الافواه/kaifayl.net 2023-12-24 21:14:12 PST (DEBUG): No posts or pages matching slug: kaifayl.net 2023-12-24 21:14:53 PST (DEBUG): Slow query (41.83 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/ErrorHandler.php(147): ABJ_404_Solution_Logging->errorMessage('ABJ404-SOLUTION...') #1 [internal function]: ABJ_404_Solution_ErrorHandler::FatalErrorHandler() #2 {main} 2024-01-04 12:17:12 PST (INFO): Updating collation from latin1_swedish_ci to utf8mb4_unicode_ci 2024-01-04 12:17:12 PST (INFO): I succesfully changed the collation of wp_abj404_redirects to utf8mb4_unicode_ci 2024-01-04 12:17:13 PST (INFO): I succesfully changed the collation of wp_abj404_logsv2 to utf8mb4_unicode_ci 2024-01-04 12:17:14 PST (INFO): I succesfully changed the collation of wp_abj404_lookup to utf8mb4_unicode_ci 2024-01-04 12:17:14 PST (INFO): I succesfully changed the collation of wp_abj404_permalink_cache to utf8mb4_unicode_ci 2024-01-04 12:17:15 PST (INFO): I succesfully changed the collation of wp_abj404_spelling_cache to utf8mb4_unicode_ci 2024-01-04 12:17:15 PST (INFO): Updating wp_abj404_logsv2 to MyISAM. 2024-01-04 12:17:15 PST (INFO): I changed an engine: alter table `wp_abj404_logsv2` engine = MyISAM; 2024-01-04 12:19:50 PST (ERROR): Ugh. SQL query error: Table 'watanser_rr19bkp.wp_abj404_logs_hits_temp' doesn't exist, SQL: ALTER TABLE wp_abj404_logs_hits_temp COMMENT '0.29589104652405', Execution time: 0.4, DB ver: 10.3.39, Variables: Array ( [0] => Array ( [max_join_size] => 18446744073709551615 [sql_big_selects] => 1 [character_set_database] => latin1 ) ) , stripped_query: n/a, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/wp-admin/options-general.php?page=abj404_solution&subpage=abj404_logs, Requested URL: /wp-admin/options-general.php?page=abj404_solution&subpage=abj404_captured, Stored debug messages: 2024-01-04 12:19:45 PST (DEBUG): Processing request for action: (none) 2024-01-04 12:19:45 PST (DEBUG): Displaying sub page: abj404_captured 2024-01-04 12:19:49 PST (DEBUG): maybeUpdateRedirectsForViewHitsTable creating immediately because create time was 0.15527606010437 seconds., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(245): ABJ_404_Solution_Logging->errorMessage('Ugh. SQL query ...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1092): ABJ_404_Solution_DataAccess->queryAndGetResults('ALTER TABLE wp_...') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1052): ABJ_404_Solution_DataAccess->createRedirectsForViewHitsTable() #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(899): ABJ_404_Solution_DataAccess->maybeUpdateRedirectsForViewHitsTable() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(815): ABJ_404_Solution_DataAccess->getRedirectsForViewQuery('abj404_captured', Array, true, 0, 25, false) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(963): ABJ_404_Solution_DataAccess->getRedirectsForView('abj404_captured', Array) #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(914): ABJ_404_Solution_View->getCapturedURLSPageTable('abj404_captured') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(113): ABJ_404_Solution_View->echoAdminCapturedURLsPage() #8 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(76): ABJ_404_Solution_View->echoChosenAdminTab(NULL, 'abj404_captured', '') #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): ABJ_404_Solution_View::handleMainAdminPageActionAndDisplay('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters('', Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-admin/admin.php(259): do_action('settings_page_a...') #13 /home/watanser/public_html/wp-admin/options-general.php(10): require_once('/home/watanser/...') #14 {main} 2024-01-04 12:19:50 PST (ERROR): Error executing SQL transaction: Table 'watanser_rr19bkp.wp_abj404_logs_hits_temp' doesn't exist, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/wp-admin/options-general.php?page=abj404_solution&subpage=abj404_logs, Requested URL: /wp-admin/options-general.php?page=abj404_solution&subpage=abj404_captured, Stored debug messages: , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(383): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1099): ABJ_404_Solution_DataAccess->executeAsTransaction(Array) #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1052): ABJ_404_Solution_DataAccess->createRedirectsForViewHitsTable() #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(899): ABJ_404_Solution_DataAccess->maybeUpdateRedirectsForViewHitsTable() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(815): ABJ_404_Solution_DataAccess->getRedirectsForViewQuery('abj404_captured', Array, true, 0, 25, false) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(963): ABJ_404_Solution_DataAccess->getRedirectsForView('abj404_captured', Array) #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(914): ABJ_404_Solution_View->getCapturedURLSPageTable('abj404_captured') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(113): ABJ_404_Solution_View->echoAdminCapturedURLsPage() #8 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(76): ABJ_404_Solution_View->echoChosenAdminTab(NULL, 'abj404_captured', '') #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): ABJ_404_Solution_View::handleMainAdminPageActionAndDisplay('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters('', Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-admin/admin.php(259): do_action('settings_page_a...') #13 /home/watanser/public_html/wp-admin/options-general.php(10): require_once('/home/watanser/...') #14 {main} 2024-01-04 12:19:50 PST (ERROR): SQL causing the transaction error: rename table wp_abj404_logs_hits_temp to wp_abj404_logs_hits, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/wp-admin/options-general.php?page=abj404_solution&subpage=abj404_logs, Requested URL: /wp-admin/options-general.php?page=abj404_solution&subpage=abj404_captured, Stored debug messages: , Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(384): ABJ_404_Solution_Logging->errorMessage('SQL causing the...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1099): ABJ_404_Solution_DataAccess->executeAsTransaction(Array) #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1052): ABJ_404_Solution_DataAccess->createRedirectsForViewHitsTable() #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(899): ABJ_404_Solution_DataAccess->maybeUpdateRedirectsForViewHitsTable() #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(815): ABJ_404_Solution_DataAccess->getRedirectsForViewQuery('abj404_captured', Array, true, 0, 25, false) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(963): ABJ_404_Solution_DataAccess->getRedirectsForView('abj404_captured', Array) #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(914): ABJ_404_Solution_View->getCapturedURLSPageTable('abj404_captured') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(113): ABJ_404_Solution_View->echoAdminCapturedURLsPage() #8 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(76): ABJ_404_Solution_View->echoChosenAdminTab(NULL, 'abj404_captured', '') #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): ABJ_404_Solution_View::handleMainAdminPageActionAndDisplay('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters('', Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-admin/admin.php(259): do_action('settings_page_a...') #13 /home/watanser/public_html/wp-admin/options-general.php(10): require_once('/home/watanser/...') #14 {main} 2024-01-04 12:19:50 PST (ERROR): Ugh. SQL query error: Table 'watanser_rr19bkp.wp_abj404_logs_hits' doesn't exist, SQL: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getRedirectsForView.sql BEGIN ----- */ select /* this is replaced with either count(*) + start comment or with nothing. */ /* selecting data as usual */ wp_abj404_redirects.id, wp_abj404_redirects.url, wp_abj404_redirects.status, (CASE when wp_abj404_redirects.status = 1 then 'Man' when wp_abj404_redirects.status = 2 then 'Auto' when wp_abj404_redirects.status = 6 then 'RegEx' else 'Unknown' end) as status_for_view, wp_abj404_redirects.type, (CASE when wp_abj404_redirects.type = 4 then 'External' when wp_abj404_redirects.type = 2 then 'Category' when wp_abj404_redirects.type = 3 then 'Tag' when wp_abj404_redirects.type = 5 then 'Home Page' when wp_abj404_redirects.type = 1 then CONCAT(UCASE(LEFT(wp_posts.post_type, 1)), LCASE(SUBSTRING(wp_posts.post_type, 2))) when wp_abj404_redirects.type = 0 then '(Special)' else 'Unknown' end) as type_for_view, wp_abj404_redirects.final_dest, (case when wp_abj404_redirects.type = 4 then wp_abj404_redirects.final_dest when wp_abj404_redirects.type = 1 then wp_posts.post_title when wp_abj404_redirects.type = 2 then terms.name when wp_abj404_redirects.type = 3 then terms.name when wp_abj404_redirects.type = 5 then wp_options.option_value when wp_abj404_redirects.type = 0 then '(Default 404 Page)' else '? Dest Type' end) as dest_for_view, (case when wp_abj404_redirects.type = 4 then 1 when wp_abj404_redirects.type = 1 and lower(wp_posts.post_status) = 'publish' then 1 when wp_abj404_redirects.type = 1 and lower(wp_posts.post_status) != 'publish' then 0 when wp_abj404_redirects.type in (2, 3) and terms.term_id is not null then 1 when wp_abj404_redirects.type in (2, 3) and terms.term_id is null then 0 when wp_abj404_redirects.type = 5 then 1 when wp_abj404_redirects.type = 0 then 1 else '? Dest Type' end) as published_status, wp_abj404_redirects.code, wp_abj404_redirects.timestamp, wp_posts.id as wp_post_id, logstable.logshits as logshits, logstable.logsid, logstable.last_used, wp_posts.post_type as wp_post_type /* This ends a comment when only select for the count(*) */ from wp_abj404_redirects wp_abj404_redirects LEFT OUTER JOIN wp_posts wp_posts on binary wp_abj404_redirects.final_dest = binary wp_posts.id LEFT OUTER JOIN wp_abj404_logs_hits logstable on binary wp_abj404_redirects.url = binary logstable.requested_url left outer join wp_terms terms on binary wp_abj404_redirects.final_dest = binary terms.term_id inner join wp_options wp_options on binary wp_options.option_name = binary 'blogname' where 1 and (status in (3, 4, 5)) and disabled = 0 /* no redirects fiter text found and replace(lower(CONCAT(wp_abj404_redirects.url, '////', (CASE when wp_abj404_redirects.status = 1 then 'Man' when wp_abj404_redirects.status = 2 then 'Auto' when wp_abj404_redirects.status = 6 then 'RegEx' else 'Unknown' end), '////', (CASE when wp_abj404_redirects.type = 4 then 'External' when wp_abj404_redirects.type = 2 then 'Category' when wp_abj404_redirects.type = 3 then 'Tag' when wp_abj404_redirects.type = 5 then 'Home Page' when wp_abj404_redirects.type = 1 then CONCAT(UCASE(LEFT(wp_posts.post_type, 1)), LCASE(SUBSTRING(wp_posts.post_type, 2))) else 'Unknown' end), '////', (case when wp_abj404_redirects.type = 4 then wp_abj404_redirects.final_dest when wp_abj404_redirects.type = 1 then wp_posts.post_title when wp_abj404_redirects.type = 2 then terms.name when wp_abj404_redirects.type = 3 then terms.name when wp_abj404_redirects.type = 5 then wp_options.option_value when wp_abj404_redirects.type = 0 then '(404 page)' else '? Dest Type' end), '////', wp_abj404_redirects.code) ), ' ', '') like replace(lower('%%'), ' ', '') /* */ /* no captured 404s filter text found and replace(lower(wp_abj404_redirects.url), ' ', '') like replace(lower('%%'), ' ', '') /* */ order by published_status asc, logshits DESC limit 0, 25 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getRedirectsForView.sql END ----- */ , Execution time: 0.16, DB ver: 10.3.39, Variables: Array ( [0] => Array ( [max_join_size] => 18446744073709551615 [sql_big_selects] => 1 [character_set_database] => latin1 ) ) , stripped_query: n/a, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/wp-admin/options-general.php?page=abj404_solution&subpage=abj404_logs, Requested URL: /wp-admin/options-general.php?page=abj404_solution&subpage=abj404_captured, Stored debug messages: 2024-01-04 12:19:35 PST (DEBUG): Processing request for action: (none) 2024-01-04 12:19:35 PST (DEBUG): Displaying sub page: abj404_captured 2024-01-04 12:19:38 PST (DEBUG): maybeUpdateRedirectsForViewHitsTable creating immediately because create time was 0.15527606010437 seconds. 2024-01-04 12:19:50 PST (DEBUG): createRedirectsForViewHitsTable refreshed wp_abj404_logs_hits in 0.1552791595459 seconds., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(245): ABJ_404_Solution_Logging->errorMessage('Ugh. SQL query ...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(823): ABJ_404_Solution_DataAccess->queryAndGetResults('\n/* -----------...') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(963): ABJ_404_Solution_DataAccess->getRedirectsForView('abj404_captured', Array) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(914): ABJ_404_Solution_View->getCapturedURLSPageTable('abj404_captured') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(113): ABJ_404_Solution_View->echoAdminCapturedURLsPage() #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(76): ABJ_404_Solution_View->echoChosenAdminTab(NULL, 'abj404_captured', '') #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): ABJ_404_Solution_View::handleMainAdminPageActionAndDisplay('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters('', Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-admin/admin.php(259): do_action('settings_page_a...') #10 /home/watanser/public_html/wp-admin/options-general.php(10): require_once('/home/watanser/...') #11 {main} 2024-01-04 12:19:50 PST (ERROR): Ugh. SQL query error: Table 'watanser_rr19bkp.wp_abj404_logs_hits' doesn't exist, SQL: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getRedirectsForView.sql BEGIN ----- */ select /* this is replaced with either count(*) + start comment or with nothing. */ /* selecting data as usual */ wp_abj404_redirects.id, wp_abj404_redirects.url, wp_abj404_redirects.status, (CASE when wp_abj404_redirects.status = 1 then 'Man' when wp_abj404_redirects.status = 2 then 'Auto' when wp_abj404_redirects.status = 6 then 'RegEx' else 'Unknown' end) as status_for_view, wp_abj404_redirects.type, (CASE when wp_abj404_redirects.type = 4 then 'External' when wp_abj404_redirects.type = 2 then 'Category' when wp_abj404_redirects.type = 3 then 'Tag' when wp_abj404_redirects.type = 5 then 'Home Page' when wp_abj404_redirects.type = 1 then CONCAT(UCASE(LEFT(wp_posts.post_type, 1)), LCASE(SUBSTRING(wp_posts.post_type, 2))) when wp_abj404_redirects.type = 0 then '(Special)' else 'Unknown' end) as type_for_view, wp_abj404_redirects.final_dest, (case when wp_abj404_redirects.type = 4 then wp_abj404_redirects.final_dest when wp_abj404_redirects.type = 1 then wp_posts.post_title when wp_abj404_redirects.type = 2 then terms.name when wp_abj404_redirects.type = 3 then terms.name when wp_abj404_redirects.type = 5 then wp_options.option_value when wp_abj404_redirects.type = 0 then '(Default 404 Page)' else '? Dest Type' end) as dest_for_view, (case when wp_abj404_redirects.type = 4 then 1 when wp_abj404_redirects.type = 1 and lower(wp_posts.post_status) = 'publish' then 1 when wp_abj404_redirects.type = 1 and lower(wp_posts.post_status) != 'publish' then 0 when wp_abj404_redirects.type in (2, 3) and terms.term_id is not null then 1 when wp_abj404_redirects.type in (2, 3) and terms.term_id is null then 0 when wp_abj404_redirects.type = 5 then 1 when wp_abj404_redirects.type = 0 then 1 else '? Dest Type' end) as published_status, wp_abj404_redirects.code, wp_abj404_redirects.timestamp, wp_posts.id as wp_post_id, logstable.logshits as logshits, logstable.logsid, logstable.last_used, wp_posts.post_type as wp_post_type /* This ends a comment when only select for the count(*) */ from wp_abj404_redirects wp_abj404_redirects LEFT OUTER JOIN wp_posts wp_posts on binary wp_abj404_redirects.final_dest = binary wp_posts.id LEFT OUTER JOIN wp_abj404_logs_hits logstable on binary wp_abj404_redirects.url = binary logstable.requested_url left outer join wp_terms terms on binary wp_abj404_redirects.final_dest = binary terms.term_id inner join wp_options wp_options on binary wp_options.option_name = binary 'blogname' where 1 and (status in (3, 4, 5)) and disabled = 0 /* no redirects fiter text found and replace(lower(CONCAT(wp_abj404_redirects.url, '////', (CASE when wp_abj404_redirects.status = 1 then 'Man' when wp_abj404_redirects.status = 2 then 'Auto' when wp_abj404_redirects.status = 6 then 'RegEx' else 'Unknown' end), '////', (CASE when wp_abj404_redirects.type = 4 then 'External' when wp_abj404_redirects.type = 2 then 'Category' when wp_abj404_redirects.type = 3 then 'Tag' when wp_abj404_redirects.type = 5 then 'Home Page' when wp_abj404_redirects.type = 1 then CONCAT(UCASE(LEFT(wp_posts.post_type, 1)), LCASE(SUBSTRING(wp_posts.post_type, 2))) else 'Unknown' end), '////', (case when wp_abj404_redirects.type = 4 then wp_abj404_redirects.final_dest when wp_abj404_redirects.type = 1 then wp_posts.post_title when wp_abj404_redirects.type = 2 then terms.name when wp_abj404_redirects.type = 3 then terms.name when wp_abj404_redirects.type = 5 then wp_options.option_value when wp_abj404_redirects.type = 0 then '(404 page)' else '? Dest Type' end), '////', wp_abj404_redirects.code) ), ' ', '') like replace(lower('%%'), ' ', '') /* */ /* no captured 404s filter text found and replace(lower(wp_abj404_redirects.url), ' ', '') like replace(lower('%%'), ' ', '') /* */ order by published_status asc, logshits DESC limit 0, 25 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getRedirectsForView.sql END ----- */ , Execution time: 0, DB ver: 10.3.39, Variables: Array ( [0] => Array ( [max_join_size] => 18446744073709551615 [sql_big_selects] => 1 [character_set_database] => latin1 ) ) , stripped_query: n/a, PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/wp-admin/options-general.php?page=abj404_solution&subpage=abj404_logs, Requested URL: /wp-admin/options-general.php?page=abj404_solution&subpage=abj404_captured, Stored debug messages: 2024-01-04 12:19:50 PST (DEBUG): createRedirectsForViewHitsTable refreshed wp_abj404_logs_hits in 0.29589104652405 seconds., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(245): ABJ_404_Solution_Logging->errorMessage('Ugh. SQL query ...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(823): ABJ_404_Solution_DataAccess->queryAndGetResults('\n/* -----------...') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(963): ABJ_404_Solution_DataAccess->getRedirectsForView('abj404_captured', Array) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(914): ABJ_404_Solution_View->getCapturedURLSPageTable('abj404_captured') #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(113): ABJ_404_Solution_View->echoAdminCapturedURLsPage() #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/View.php(76): ABJ_404_Solution_View->echoChosenAdminTab(NULL, 'abj404_captured', '') #6 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): ABJ_404_Solution_View::handleMainAdminPageActionAndDisplay('') #7 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters('', Array) #8 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #9 /home/watanser/public_html/wp-admin/admin.php(259): do_action('settings_page_a...') #10 /home/watanser/public_html/wp-admin/options-general.php(10): require_once('/home/watanser/...') #11 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/06/04/%D8%A7%D9%84%D8%AF%D9%88%D9%84-%D8%A7%D9%84%D8%A3%D8%B1%D8%A8%D8%B9%D8%A9-%D8%A7%D9%84%D8%AA%D9%8A-%D9%82%D8%A7%D8%B7%D8%B9%D8%AA-%D9%82%D8%B7%D8%B1-%D8%A7%D8%B3%D8%AA%D9%87%D8%AF%D9%81%D8%AA-%D8%A3/xcai188.com, Stored debug messages: 2024-01-04 12:20:25 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2017/06/04/الدول-الأربعة-التي-قاطعت-قطر-استهدفت-أ/xcai188.com 2024-01-04 12:20:25 PST (DEBUG): Processing 404 for URL: /2017/06/04/الدول-الأربعة-التي-قاطعت-قطر-استهدفت-أ/xcai188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2017/06/04/الدول-الأربعة-التي-قاطعت-قطر-استهدفت-أ/xcai188.com 2024-01-04 12:20:26 PST (DEBUG): No posts or pages matching slug: xcai188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (319.91 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('xcai188 com', '2017 06 04 \xD8\xA7\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'xcai188 com', '2017 06 04 \xD8\xA7\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/06/04/\xD8\xA7\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/06/04/\xD8\xA7\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/04/04/%D8%A3%D9%83%D8%B1%D9%85%D9%8E%D9%86%D8%A7-%D8%A8%D8%AD%D8%B6%D9%88%D8%B1%D9%87-%D9%88%D8%AC%D9%84%D9%88%D8%B3%D9%87-%D9%81%D9%8A-%D8%A7%D9%84%D9%82%D8%A7%D8%B9%D8%A9-%D8%A7%D9%84%D8%B1%D8%A6/wanbo168.net, Stored debug messages: 2024-01-04 12:20:24 PST (DEBUG): Processing 404 for URL: /2019/04/04/أكرمَنا-بحضوره-وجلوسه-في-القاعة-الرئ/wanbo168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.37.1b8i98lo8vn8, REQUEST_URI: /2019/04/04/أكرمَنا-بحضوره-وجلوسه-في-القاعة-الرئ/wanbo168.net 2024-01-04 12:20:25 PST (DEBUG): No posts or pages matching slug: wanbo168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (321.21 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('wanbo168 net', '2019 04 04 \xD8\xA3\xD9\x83...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'wanbo168 net', '2019 04 04 \xD8\xA3\xD9\x83...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/04/04/\xD8\xA3\xD9\x83...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/04/04/\xD8\xA3\xD9\x83...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 3), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: //wp-includes/css/, Stored debug messages: 2024-01-04 12:19:35 PST (DEBUG): Processing 404 for URL: /wp-includes/css/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0, REMOTE_ADDR: 69.164.219.3cgd4sosj0m0, REQUEST_URI: //wp-includes/css/ 2024-01-04 12:19:35 PST (DEBUG): No posts or pages matching slug: css 2024-01-04 12:25:46 PST (DEBUG): Slow query (370.62 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(3, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(3) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('css', 'wp includes css...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'css', 'wp includes css...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-includes/css...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-includes/css...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 15), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/07/28/%D8%B4%D9%8A%D8%AE-%D9%82%D8%B7%D8%B1%D9%8A-%D8%B3%D8%A7%D8%AE%D8%B1%D8%A7-%D9%85%D9%86-%D8%A7%D9%84%D8%AA%D8%AD%D8%A7%D9%84%D9%81-%D8%A7%D9%84%D8%B9%D8%B1%D8%A8%D9%8A-%D8%A3%D9%8A%D9%86-%D9%88%D8%B9/j9jiuyouhui.com, Stored debug messages: 2024-01-04 12:23:49 PST (DEBUG): Processing 404 for URL: /2018/07/28/شيخ-قطري-ساخرا-من-التحالف-العربي-أين-وع/j9jiuyouhui.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.31.vu7f7eg05v40, REQUEST_URI: /2018/07/28/شيخ-قطري-ساخرا-من-التحالف-العربي-أين-وع/j9jiuyouhui.com 2024-01-04 12:23:50 PST (DEBUG): No posts or pages matching slug: j9jiuyouhui.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (115.69 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(15, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(15) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('j9jiuyouhui com', '2018 07 28 \xD8\xB4\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'j9jiuyouhui com', '2018 07 28 \xD8\xB4\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/07/28/\xD8\xB4\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/07/28/\xD8\xB4\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 15), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/04/30/%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D9%82%D8%AA%D9%84-%D8%B5%D8%AF%D9%8A%D9%82%D9%87-%D8%A8%D8%B9%D8%AF-%D8%A7%D9%83%D8%AA%D8%B4%D8%A7%D9%81%D9%87-%D8%A8%D8%A3%D9%86%D9%87-%D8%A3%D9%82%D8%A7%D9%85-%D8%B9/huatihui188.net, Stored debug messages: 2024-01-04 12:20:17 PST (DEBUG): Processing 404 for URL: /2016/04/30/سعودي-قتل-صديقه-بعد-اكتشافه-بأنه-أقام-ع/huatihui188.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html), REMOTE_ADDR: 185.191.171.621baderv9f0, REQUEST_URI: /2016/04/30/سعودي-قتل-صديقه-بعد-اكتشافه-بأنه-أقام-ع/huatihui188.net 2024-01-04 12:20:17 PST (DEBUG): No posts or pages matching slug: huatihui188.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (328.59 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(15, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(15) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('huatihui188 net', '2016 04 30 \xD8\xB3\xD8\xB9...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'huatihui188 net', '2016 04 30 \xD8\xB3\xD8\xB9...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/04/30/\xD8\xB3\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/04/30/\xD8\xB3\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2015/10/21/%D8%AD%D9%88%D9%91%D8%A7%D8%A1-%D9%87%D8%B0%D9%87-%D8%AF%D8%B1%D8%A7%D8%B3%D8%A9-%D8%AE%D8%B7%D9%8A%D8%B1%D8%A9-%D9%81%D8%A7%D8%AD%D8%B0%D8%B1%D9%8A-%D9%85%D9%86-%D8%A7%D9%84%D9%85%D8%A7/luyutiyu.com, Stored debug messages: 2024-01-04 12:19:59 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2015/10/21/حوّاء-هذه-دراسة-خطيرة-فاحذري-من-الما/luyutiyu.com 2024-01-04 12:19:59 PST (DEBUG): Processing 404 for URL: /2015/10/21/حوّاء-هذه-دراسة-خطيرة-فاحذري-من-الما/luyutiyu.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4ou4rgg881j0, REQUEST_URI: /2015/10/21/حوّاء-هذه-دراسة-خطيرة-فاحذري-من-الما/luyutiyu.com 2024-01-04 12:20:00 PST (DEBUG): No posts or pages matching slug: luyutiyu.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (346.17 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('luyutiyu com', '2015 10 21 \xD8\xAD\xD9\x88...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'luyutiyu com', '2015 10 21 \xD8\xAD\xD9\x88...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2015/10/21/\xD8\xAD\xD9\x88...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2015/10/21/\xD8\xAD\xD9\x88...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/12/08/%D8%AD%D9%85%D8%B2%D8%A9-%D8%AA%D9%83%D9%8A%D9%86-%D9%8A%D8%AA%D8%AD%D8%AF%D8%AB-%D9%84%D9%80%D9%90%D9%88%D8%B7%D9%86-%D8%B9%D9%86-%D9%84%D9%82%D8%A7%D8%A1-%D9%85%D8%AD%D9%85%D8%AF-%D8%A8%D9%86/wanbo168.net, Stored debug messages: 2024-01-04 12:20:24 PST (DEBUG): Processing 404 for URL: /2021/12/08/حمزة-تكين-يتحدث-لـِوطن-عن-لقاء-محمد-بن/wanbo168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.113.105ism5b2p10, REQUEST_URI: /2021/12/08/حمزة-تكين-يتحدث-لـِوطن-عن-لقاء-محمد-بن/wanbo168.net 2024-01-04 12:20:25 PST (DEBUG): No posts or pages matching slug: wanbo168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (321.28 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('wanbo168 net', '2021 12 08 \xD8\xAD\xD9\x85...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'wanbo168 net', '2021 12 08 \xD8\xAD\xD9\x85...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/12/08/\xD8\xAD\xD9\x85...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/12/08/\xD8\xAD\xD9\x85...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 4), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /latest/feed/, Stored debug messages: 2024-01-04 12:19:26 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /latest/feed/ 2024-01-04 12:19:26 PST (DEBUG): Processing 404 for URL: /latest/feed/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 66.249.77.3lfd85pv9kp0, REQUEST_URI: /latest/feed/ 2024-01-04 12:19:27 PST (DEBUG): No posts or pages matching slug: feed 2024-01-04 12:25:46 PST (DEBUG): Slow query (378.85 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(4, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(4) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('feed', 'latest feed ', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'feed', 'latest feed ', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('latest/feed/', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('latest/feed/') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/02/13/%D8%AA%D8%AC%D9%86%D9%91%D8%A8-%D8%A5%D8%B6%D8%A7%D9%81%D8%AA%D9%87%D9%85-%D8%A5%D9%84%D9%89-%D8%AD%D8%B3%D8%A7%D8%A8%D9%83-%D8%B9%D9%84%D9%89-%D9%81%D8%A7%D9%8A%D8%B3%D8%A8%D9%88%D9%83/bandaotiyu.ai, Stored debug messages: 2024-01-04 12:21:03 PST (DEBUG): Processing 404 for URL: /2016/02/13/تجنّب-إضافتهم-إلى-حسابك-على-فايسبوك/bandaotiyu.ai | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.352auk7meal0, REQUEST_URI: /2016/02/13/تجنّب-إضافتهم-إلى-حسابك-على-فايسبوك/bandaotiyu.ai 2024-01-04 12:21:04 PST (DEBUG): No posts or pages matching slug: bandaotiyu.ai 2024-01-04 12:25:46 PST (DEBUG): Slow query (282.02 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('bandaotiyu ai', '2016 02 13 \xD8\xAA\xD8\xAC...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'bandaotiyu ai', '2016 02 13 \xD8\xAA\xD8\xAC...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/02/13/\xD8\xAA\xD8\xAC...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/02/13/\xD8\xAA\xD8\xAC...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 8), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/11/24/%D8%A2%D9%8A%D8%A7%D8%AA-%D8%B9%D8%B1%D8%A7%D8%A8%D9%8A-%D9%85%D9%87%D8%A7%D8%AC%D9%85%D8%A9-%D8%B9%D8%A8%D8%AF-%D8%A7%D9%84%D9%81%D8%AA%D8%A7%D8%AD-%D9%88%D9%85%D8%AD%D8%B3%D9%88%D8%A8-%D9%88%D8%A3/agzr.org, Stored debug messages: 2024-01-04 12:19:06 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/11/24/آيات-عرابي-مهاجمة-عبد-الفتاح-ومحسوب-وأ/agzr.org 2024-01-04 12:19:06 PST (DEBUG): Processing 404 for URL: /2016/11/24/آيات-عرابي-مهاجمة-عبد-الفتاح-ومحسوب-وأ/agzr.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2016/11/24/آيات-عرابي-مهاجمة-عبد-الفتاح-ومحسوب-وأ/agzr.org 2024-01-04 12:19:07 PST (DEBUG): No posts or pages matching slug: agzr.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (398.84 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(8, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(8) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzr org', '2016 11 24 \xD8\xA2\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzr org', '2016 11 24 \xD8\xA2\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/11/24/\xD8\xA2\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/11/24/\xD8\xA2\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 16), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: http://www.google.com/url/?sa=t, Requested URL: /404javascript.js, Stored debug messages: 2024-01-04 12:19:47 PST (DEBUG): Processing 404 for URL: /404javascript.js | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0, REMOTE_ADDR: 69.164.219.3cgd4sosj0m0, REQUEST_URI: /404javascript.js 2024-01-04 12:19:48 PST (DEBUG): No posts or pages matching slug: 404javascript.js 2024-01-04 12:25:46 PST (DEBUG): Slow query (358.14 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(16, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(16) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('404javascript j...', '', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '404javascript j...', '', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('404javascript.j...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('404javascript.j...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/12/19/%D8%B1%D8%A7%D9%86%D9%8A%D8%A7-%D9%8A%D9%88%D8%B3%D9%81-%D9%81%D9%8A-%D8%AA%D8%B5%D8%B1%D9%8A%D8%AD-%D9%85%D9%81%D8%A7%D8%AC%D8%A6-%D9%85%D8%B4-%D8%A8%D8%AE%D8%A7%D9%81-%D9%85%D9%86-%D8%B1%D8%A8/xingcaitiyu.tv, Stored debug messages: 2024-01-04 12:21:01 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/12/19/رانيا-يوسف-في-تصريح-مفاجئ-مش-بخاف-من-رب/xingcaitiyu.tv 2024-01-04 12:21:01 PST (DEBUG): Processing 404 for URL: /2022/12/19/رانيا-يوسف-في-تصريح-مفاجئ-مش-بخاف-من-رب/xingcaitiyu.tv | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /2022/12/19/رانيا-يوسف-في-تصريح-مفاجئ-مش-بخاف-من-رب/xingcaitiyu.tv 2024-01-04 12:21:01 PST (DEBUG): No posts or pages matching slug: xingcaitiyu.tv 2024-01-04 12:25:46 PST (DEBUG): Slow query (284.61 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('xingcaitiyu tv', '2022 12 19 \xD8\xB1\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'xingcaitiyu tv', '2022 12 19 \xD8\xB1\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/12/19/\xD8\xB1\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/12/19/\xD8\xB1\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/01/07/%D8%B4%D8%A7%D9%87%D8%AF-%D8%AA%D8%AD%D8%AF%D9%8A-%D8%A3%D8%AC%D9%88%D8%A7%D8%A1-%D8%A7%D9%84%D8%B7%D9%82%D8%B3-%D8%A8%D9%8A%D9%86-%D8%A7%D9%84%D9%84%D8%A7%D8%B9%D8%A8%D9%8A%D9%86-%D8%A5%D8%A8/tbtiyu188.com, Stored debug messages: 2024-01-04 12:20:23 PST (DEBUG): Processing 404 for URL: /2021/01/07/شاهد-تحدي-أجواء-الطقس-بين-اللاعبين-إب/tbtiyu188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.37.4dbqanuaboi0, REQUEST_URI: /2021/01/07/شاهد-تحدي-أجواء-الطقس-بين-اللاعبين-إب/tbtiyu188.com 2024-01-04 12:20:24 PST (DEBUG): No posts or pages matching slug: tbtiyu188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (321.86 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('tbtiyu188 com', '2021 01 07 \xD8\xB4\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'tbtiyu188 com', '2021 01 07 \xD8\xB4\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/01/07/\xD8\xB4\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/01/07/\xD8\xB4\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 8), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2013/12/14/%D9%85%D9%84%D9%8A%D8%A7%D8%B1%D8%AF%D9%8A%D8%B1%D8%A7%D8%AA-%D8%A7%D9%84%D8%B4%D8%B1%D9%82-%D8%A7%D9%84%D8%A3%D9%88%D8%B3%D8%B7-%D9%87%D9%85-%D8%A7%D9%84%D8%A3%D9%83%D8%AB%D8%B1-%D8%AB%D8%B1%D8%A7/agzl.net, Stored debug messages: 2024-01-04 12:22:07 PST (DEBUG): Processing 404 for URL: /2013/12/14/مليارديرات-الشرق-الأوسط-هم-الأكثر-ثرا/agzl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.6jr526g0l480, REQUEST_URI: /2013/12/14/مليارديرات-الشرق-الأوسط-هم-الأكثر-ثرا/agzl.net 2024-01-04 12:22:08 PST (DEBUG): No posts or pages matching slug: agzl.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (218.26 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(8, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(8) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzl net', '2013 12 14 \xD9\x85\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzl net', '2013 12 14 \xD9\x85\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2013/12/14/\xD9\x85\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2013/12/14/\xD9\x85\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2015/08/01/%D8%A7%D9%84%D9%85%D8%B3%D8%AA%D9%88%D8%B7%D9%86%D9%88%D9%86-%D8%A7%D9%84%D9%8A%D9%87%D9%88%D8%AF-%D9%84%D8%B1%D8%A6%D9%8A%D8%B3%D9%87%D9%85-%D8%A3%D9%86%D8%AA-%D9%86%D8%AA%D9%86-%D9%88%D8%AE%D8%A7/agzl168.com, Stored debug messages: 2024-01-04 12:23:37 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2015/08/01/المستوطنون-اليهود-لرئيسهم-أنت-نتن-وخا/agzl168.com 2024-01-04 12:23:37 PST (DEBUG): Processing 404 for URL: /2015/08/01/المستوطنون-اليهود-لرئيسهم-أنت-نتن-وخا/agzl168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2015/08/01/المستوطنون-اليهود-لرئيسهم-أنت-نتن-وخا/agzl168.com 2024-01-04 12:23:38 PST (DEBUG): No posts or pages matching slug: agzl168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (128.22 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzl168 com', '2015 08 01 \xD8\xA7\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzl168 com', '2015 08 01 \xD8\xA7\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2015/08/01/\xD8\xA7\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2015/08/01/\xD8\xA7\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/04/06/%D9%81%D9%86%D8%A7%D9%86%D8%A9-%D8%AA%D9%88%D9%86%D8%B3%D9%8A%D8%A9-%D8%B4%D9%87%D9%8A%D8%B1%D8%A9-%D8%A3%D9%82%D8%B3%D9%85-%D8%A8%D8%A7%D9%84%D9%84%D9%87-%D8%A3%D9%86%D8%A7-%D8%A7%D9%84%D9%85%D9%87/shaba168.com, Stored debug messages: 2024-01-04 12:21:46 PST (DEBUG): Processing 404 for URL: /2019/04/06/فنانة-تونسية-شهيرة-أقسم-بالله-أنا-المه/shaba168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.48.89dnrm43ijs0, REQUEST_URI: /2019/04/06/فنانة-تونسية-شهيرة-أقسم-بالله-أنا-المه/shaba168.com 2024-01-04 12:21:47 PST (DEBUG): No posts or pages matching slug: shaba168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (239.07 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('shaba168 com', '2019 04 06 \xD9\x81\xD9\x86...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'shaba168 com', '2019 04 06 \xD9\x81\xD9\x86...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/04/06/\xD9\x81\xD9\x86...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/04/06/\xD9\x81\xD9\x86...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 10), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/10/13/%D8%B3%D9%8A%D8%B7%D8%B1%D8%AA-%D8%B9%D9%84%D9%89-%D8%AA%D9%84-%D8%A3%D8%A8%D9%8A%D8%B6-%D9%88%D8%AA%D9%88%D8%BA%D9%84%D8%AA-%D8%A8%D8%B9%D9%85%D9%82-12/pmtiyu.org, Stored debug messages: 2024-01-04 12:20:37 PST (DEBUG): Processing 404 for URL: /2019/10/13/سيطرت-على-تل-أبيض-وتوغلت-بعمق-12/pmtiyu.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com), REMOTE_ADDR: 216.244.66.3gbsgn50q6d0, REQUEST_URI: /2019/10/13/سيطرت-على-تل-أبيض-وتوغلت-بعمق-12/pmtiyu.org 2024-01-04 12:20:38 PST (DEBUG): No posts or pages matching slug: pmtiyu.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (307.93 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(10, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(10) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pmtiyu org', '2019 10 13 \xD8\xB3\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pmtiyu org', '2019 10 13 \xD8\xB3\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/10/13/\xD8\xB3\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/10/13/\xD8\xB3\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/01/02/%D8%B4%D8%A7%D9%87%D8%AF-%D8%A2%D8%AE%D8%B1-%D8%B4%D8%B7%D8%AD%D8%A7%D8%AA-%D9%88%D8%B3%D9%8A%D9%85-%D9%8A%D9%88%D8%B3%D9%81-%D8%B7%D8%A8%D8%A7%D9%84-%D8%A3%D8%A8%D9%86%D8%A7%D8%A1-%D8%B2%D8%A7/kaifayl.net, Stored debug messages: 2024-01-04 12:22:07 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/01/02/شاهد-آخر-شطحات-وسيم-يوسف-طبال-أبناء-زا/kaifayl.net 2024-01-04 12:22:07 PST (DEBUG): Processing 404 for URL: /2018/01/02/شاهد-آخر-شطحات-وسيم-يوسف-طبال-أبناء-زا/kaifayl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2018/01/02/شاهد-آخر-شطحات-وسيم-يوسف-طبال-أبناء-زا/kaifayl.net 2024-01-04 12:22:08 PST (DEBUG): No posts or pages matching slug: kaifayl.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (218.26 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaifayl net', '2018 01 02 \xD8\xB4\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaifayl net', '2018 01 02 \xD8\xB4\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/01/02/\xD8\xB4\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/01/02/\xD8\xB4\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/09/17/%D9%85%D8%AC%D9%87%D9%88%D9%84-%D9%81%D9%8A-%D8%B3%D9%84%D8%B7%D9%86%D8%A9-%D8%B9%D9%85%D8%A7%D9%86-%D9%8A%D8%AD%D8%B1%D9%82-%D9%85%D8%A8%D8%A7%D9%84%D8%BA-%D9%83%D8%A8%D9%8A%D8%B1%D8%A9-%D9%81%D8%A6/kaiyun-168.com, Stored debug messages: 2024-01-04 12:20:23 PST (DEBUG): Processing 404 for URL: /2023/09/17/مجهول-في-سلطنة-عمان-يحرق-مبالغ-كبيرة-فئ/kaiyun-168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.127.459lnqsnn450, REQUEST_URI: /2023/09/17/مجهول-في-سلطنة-عمان-يحرق-مبالغ-كبيرة-فئ/kaiyun-168.com 2024-01-04 12:20:24 PST (DEBUG): No posts or pages matching slug: kaiyun-168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (321.71 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaiyun 168 com', '2023 09 17 \xD9\x85\xD8\xAC...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaiyun 168 com', '2023 09 17 \xD9\x85\xD8\xAC...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/09/17/\xD9\x85\xD8\xAC...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/09/17/\xD9\x85\xD8\xAC...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/12/22/%D9%85%D8%B1%D9%83%D8%B2-%D8%A7%D9%84%D8%AF%D8%B9%D8%A7%D8%B1%D8%A9-%D8%A7%D9%84%D8%A3%D9%83%D8%A8%D8%B1-%D8%A8%D8%A7%D9%84%D8%B9%D8%A7%D9%84%D9%85-%D8%BA%D8%A7%D8%AF%D8%A9-%D8%B9%D9%88%D9%8A/yxty168.org%22, Stored debug messages: 2024-01-04 12:18:07 PST (DEBUG): Processing 404 for URL: /2020/12/22/مركز-الدعارة-الأكبر-بالعالم-غادة-عوي/yxty168.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.54.3gbsgn50q6d0, REQUEST_URI: /2020/12/22/مركز-الدعارة-الأكبر-بالعالم-غادة-عوي/yxty168.org" 2024-01-04 12:18:08 PST (DEBUG): No posts or pages matching slug: yxty168.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (458.16 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('yxty168 org', '2020 12 22 \xD9\x85\xD8\xB1...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'yxty168 org', '2020 12 22 \xD9\x85\xD8\xB1...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/12/22/\xD9\x85\xD8\xB1...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/12/22/\xD9\x85\xD8\xB1...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/01/31/%D8%A8%D8%B9%D8%AF-%D9%85%D8%A7-%D8%A3%D8%B8%D9%87%D8%B1%D8%AA-%D9%86%D8%AC%D8%A7%D8%B9%D8%AA%D9%87%D8%A7-%D8%A7%D9%84%D8%B9%D8%AF%D9%8A%D8%AF-%D9%8A%D8%AA%D8%A8%D8%B9%D9%88%D9%86-%D9%87%D8%B0/aiyouxi.one, Stored debug messages: 2024-01-04 12:21:28 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/01/31/بعد-ما-أظهرت-نجاعتها-العديد-يتبعون-هذ/aiyouxi.one 2024-01-04 12:21:28 PST (DEBUG): Processing 404 for URL: /2022/01/31/بعد-ما-أظهرت-نجاعتها-العديد-يتبعون-هذ/aiyouxi.one | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2022/01/31/بعد-ما-أظهرت-نجاعتها-العديد-يتبعون-هذ/aiyouxi.one 2024-01-04 12:21:29 PST (DEBUG): No posts or pages matching slug: aiyouxi.one 2024-01-04 12:25:46 PST (DEBUG): Slow query (257.35 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('aiyouxi one', '2022 01 31 \xD8\xA8\xD8\xB9...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'aiyouxi one', '2022 01 31 \xD8\xA8\xD8\xB9...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/01/31/\xD8\xA8\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/01/31/\xD8\xA8\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/06/28/%D8%B4%D8%A7%D9%87%D8%AF-%D8%B9%D8%B6%D9%88-%D9%85%D8%AC%D9%84%D8%B3-%D9%86%D9%88%D8%A7%D8%A8-%D8%A3%D9%85%D8%B1%D9%8A%D9%83%D9%8A-%D9%84%D9%88-%D8%A7%D9%86%D8%AF%D9%84%D8%B9%D8%AA-%D8%A7%D8%AD/hgty168.net, Stored debug messages: 2024-01-04 12:18:37 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/06/28/شاهد-عضو-مجلس-نواب-أمريكي-لو-اندلعت-اح/hgty168.net 2024-01-04 12:18:37 PST (DEBUG): Processing 404 for URL: /2018/06/28/شاهد-عضو-مجلس-نواب-أمريكي-لو-اندلعت-اح/hgty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2018/06/28/شاهد-عضو-مجلس-نواب-أمريكي-لو-اندلعت-اح/hgty168.net 2024-01-04 12:18:38 PST (DEBUG): No posts or pages matching slug: hgty168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (428.52 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('hgty168 net', '2018 06 28 \xD8\xB4\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'hgty168 net', '2018 06 28 \xD8\xB4\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/06/28/\xD8\xB4\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/06/28/\xD8\xB4\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/10/25/%D9%87%D9%84-%D9%8A%D8%AF%D8%AE%D9%84-%D9%85%D8%AD%D9%85%D8%AF-%D8%B9%D8%B3%D8%A7%D9%81-%D9%85%D9%88%D8%B3%D9%88%D8%B9%D8%A9-%D8%AC%D9%86%D9%8A%D8%B3-%D8%A8%D9%87%D8%B0%D8%A7-%D8%A7%D9%84%D9%83/jnty168.net, Stored debug messages: 2024-01-04 12:23:54 PST (DEBUG): Processing 404 for URL: /2016/10/25/هل-يدخل-محمد-عساف-موسوعة-جنيس-بهذا-الك/jnty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.40.6hui8q816mh0, REQUEST_URI: /2016/10/25/هل-يدخل-محمد-عساف-موسوعة-جنيس-بهذا-الك/jnty168.net 2024-01-04 12:23:55 PST (DEBUG): No posts or pages matching slug: jnty168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (110.84 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('jnty168 net', '2016 10 25 \xD9\x87\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'jnty168 net', '2016 10 25 \xD9\x87\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/10/25/\xD9\x87\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/10/25/\xD9\x87\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/05/19/%D9%85%D8%B5%D8%B1%D9%8A%D9%91%D8%A9-%D8%AA%D8%B3%D8%AA%D8%B9%D9%8A%D9%86-%D8%A8%D8%B9%D8%B4%D9%8A%D9%82%D9%87%D8%A7-%D9%88%D8%B5%D8%AF%D9%8A%D9%82%D9%87-%D9%84%D9%82%D8%AA%D9%84-%D8%B2%D9%88%D8%AC/xcai188.com, Stored debug messages: 2024-01-04 12:18:49 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/05/19/مصريّة-تستعين-بعشيقها-وصديقه-لقتل-زوج/xcai188.com 2024-01-04 12:18:49 PST (DEBUG): Processing 404 for URL: /2016/05/19/مصريّة-تستعين-بعشيقها-وصديقه-لقتل-زوج/xcai188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4svnogt3u090, REQUEST_URI: /2016/05/19/مصريّة-تستعين-بعشيقها-وصديقه-لقتل-زوج/xcai188.com 2024-01-04 12:18:50 PST (DEBUG): No posts or pages matching slug: xcai188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (415.81 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('xcai188 com', '2016 05 19 \xD9\x85\xD8\xB5...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'xcai188 com', '2016 05 19 \xD9\x85\xD8\xB5...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/05/19/\xD9\x85\xD8\xB5...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/05/19/\xD9\x85\xD8\xB5...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 8), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/11/20/%D8%AA%D8%B1%D9%83%D9%8A-%D8%A7%D9%84%D8%AD%D9%85%D8%AF-%D9%8A%D9%84%D8%AC%D9%85-%D9%85%D8%AD%D9%85%D8%AF-%D8%A2%D9%84-%D8%A7%D9%84%D8%B4%D9%8A%D8%AE-%D8%A8%D8%B9%D8%AF/agzl.net, Stored debug messages: 2024-01-04 12:23:39 PST (DEBUG): Processing 404 for URL: /2019/11/20/تركي-الحمد-يلجم-محمد-آل-الشيخ-بعد/agzl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com), REMOTE_ADDR: 216.244.66.3gbsgn50q6d0, REQUEST_URI: /2019/11/20/تركي-الحمد-يلجم-محمد-آل-الشيخ-بعد/agzl.net 2024-01-04 12:23:39 PST (DEBUG): No posts or pages matching slug: agzl.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (126.57 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(8, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(8) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzl net', '2019 11 20 \xD8\xAA\xD8\xB1...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzl net', '2019 11 20 \xD8\xAA\xD8\xB1...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/11/20/\xD8\xAA\xD8\xB1...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/11/20/\xD8\xAA\xD8\xB1...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/%D9%82%D9%88%D8%A9-%D8%AF%D9%84%D8%AA%D8%A7.jpg, Stored debug messages: 2024-01-04 12:19:31 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/قوة-دلتا.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Photon/1.0, REMOTE_ADDR: 192.0.100.4svnogt3u090, REQUEST_URI: /wp-content/uploads/قوة-دلتا.jpg 2024-01-04 12:19:31 PST (DEBUG): No posts or pages matching slug: قوة-دلتا.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (374.47 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD9\x82\xD9\x88\xD8\xA9 \xD8\xAF\xD9\x84\xD8\xAA\xD8\xA7...', 'wp content uplo...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD9\x82\xD9\x88\xD8\xA9 \xD8\xAF\xD9\x84\xD8\xAA\xD8\xA7...', 'wp content uplo...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/02/19/%D8%B4%D8%A7%D9%87%D8%AF-%D8%A5%D8%B9%D9%84%D8%A7%D9%85%D9%8A-%D8%A8%D8%A7%D9%84%D8%AA%D9%84%D9%81%D8%B2%D9%8A%D9%88%D9%86-%D8%A7%D9%84%D8%A3%D8%B1%D8%AF%D9%86%D9%8A-%D9%8A%D8%AD%D9%85%D9%84-%D9%84/aiyouxi.one, Stored debug messages: 2024-01-04 12:21:58 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/02/19/شاهد-إعلامي-بالتلفزيون-الأردني-يحمل-ل/aiyouxi.one 2024-01-04 12:21:58 PST (DEBUG): Processing 404 for URL: /2018/02/19/شاهد-إعلامي-بالتلفزيون-الأردني-يحمل-ل/aiyouxi.one | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /2018/02/19/شاهد-إعلامي-بالتلفزيون-الأردني-يحمل-ل/aiyouxi.one 2024-01-04 12:21:59 PST (DEBUG): No posts or pages matching slug: aiyouxi.one 2024-01-04 12:25:46 PST (DEBUG): Slow query (227.36 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('aiyouxi one', '2018 02 19 \xD8\xB4\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'aiyouxi one', '2018 02 19 \xD8\xB4\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/02/19/\xD8\xB4\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/02/19/\xD8\xB4\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 17), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2018/05/%D9%85%D9%87%D8%A7%D8%AA%D9%8A%D8%B1-%D9%85%D8%AD%D9%85%D8%AF-1.jpg, Stored debug messages: 2024-01-04 12:18:00 PST (DEBUG): Ignoring user agent (process ok): facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) for URL: /wp-content/uploads/2018/05/مهاتير-محمد-1.jpg 2024-01-04 12:18:00 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2018/05/مهاتير-محمد-1.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php), REMOTE_ADDR: 2a03:2880:23ff:4f2ji5vjna30, REQUEST_URI: /wp-content/uploads/2018/05/مهاتير-محمد-1.jpg 2024-01-04 12:18:01 PST (DEBUG): No posts or pages matching slug: مهاتير-محمد-1.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (465.37 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(17, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(17) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD9\x85\xD9\x87\xD8\xA7\xD8\xAA\xD9\x8A\xD8\xB1 \xD9\x85...', 'wp content uplo...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD9\x85\xD9\x87\xD8\xA7\xD8\xAA\xD9\x8A\xD8\xB1 \xD9\x85...', 'wp content uplo...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/05/31/%D8%A2%D9%84-%D8%A8%D8%A7%D8%AA%D8%B4%D9%8A%D9%86%D9%88-%D9%8A%D9%86%D8%AA%D8%B8%D8%B1-%D8%B7%D9%81%D9%84%D8%A7%D9%8B-%D9%85%D9%86-%D8%B5%D8%AF%D9%8A%D9%82%D8%AA%D9%87-%D8%A7%D9%84%D9%83%D9%88%D9%8A/leyutiy.net, Stored debug messages: 2024-01-04 12:22:52 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /2023/05/31/آل-باتشينو-ينتظر-طفلاً-من-صديقته-الكوي/leyutiy.net 2024-01-04 12:22:52 PST (DEBUG): Processing 404 for URL: /2023/05/31/آل-باتشينو-ينتظر-طفلاً-من-صديقته-الكوي/leyutiy.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /2023/05/31/آل-باتشينو-ينتظر-طفلاً-من-صديقته-الكوي/leyutiy.net 2024-01-04 12:22:53 PST (DEBUG): No posts or pages matching slug: leyutiy.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (173.09 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('leyutiy net', '2023 05 31 \xD8\xA2\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'leyutiy net', '2023 05 31 \xD8\xA2\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/05/31/\xD8\xA2\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/05/31/\xD8\xA2\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 41), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /www.watanserb.com/wp-content/uploads/2022/03/%D8%AE%D9%84%D9%8A%D9%84-%D8%A7%D9%84%D8%A8%D9%84%D9%88%D8%B4%D9%8A-%D8%A7%D9%84%D9%85%D8%B9%D9%84%D9%82-%D8%A7%D9%84%D8%B1%D9%8A%D8%A7%D8%B6%D9%8A-%D8%A7%D9%84%D8%B9%D9%85%D8%A7%D9%86%D9%8A-1.jpg, Stored debug messages: 2024-01-04 12:18:56 PST (DEBUG): Processing 404 for URL: /www.watanserb.com/wp-content/uploads/2022/03/خليل-البلوشي-المعلق-الرياضي-العماني-1.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Dalvik/2.1.0 (Linux; U; Android 12; SM-A525F Build/SP1A.210812.016), REMOTE_ADDR: 109.74.192.3ulfhq2p4vvg, REQUEST_URI: /www.watanserb.com/wp-content/uploads/2022/03/خليل-البلوشي-المعلق-الرياضي-العماني-1.jpg 2024-01-04 12:18:57 PST (DEBUG): No posts or pages matching slug: خليل-البلوشي-المعلق-الرياضي-العماني-1.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (409.53 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(41, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(41) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xAE\xD9\x84\xD9\x8A\xD9\x84 \xD8\xA7\xD9\x84\xD8\xA8...', 'www watanserb c...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xAE\xD9\x84\xD9\x8A\xD9\x84 \xD8\xA7\xD9\x84\xD8\xA8...', 'www watanserb c...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('www.watanserb.c...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('www.watanserb.c...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 42), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2020/05/%D9%85%D8%B0%D9%8A%D8%B9%D8%A9-22%D8%A3%D9%85-%D8%A8%D9%8A-%D8%B3%D9%8A22-%D8%A7%D8%B5%D8%A7%D9%84%D8%A9-%D9%83%D8%A7%D9%85%D9%84-696x392.jpeg, Stored debug messages: 2024-01-04 12:23:40 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /wp-content/uploads/2020/05/مذيعة-22أم-بي-سي22-اصالة-كامل-696x392.jpeg 2024-01-04 12:23:40 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2020/05/مذيعة-22أم-بي-سي22-اصالة-كامل-696x392.jpeg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /wp-content/uploads/2020/05/مذيعة-22أم-بي-سي22-اصالة-كامل-696x392.jpeg 2024-01-04 12:23:41 PST (DEBUG): No posts or pages matching slug: مذيعة-22أم-بي-سي22-اصالة-كامل-696x392.jpeg 2024-01-04 12:25:46 PST (DEBUG): Slow query (124.8 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(42, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(42) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD9\x85\xD8\xB0\xD9\x8A\xD8\xB9\xD8\xA9 22\xD8\xA3...', 'wp content uplo...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD9\x85\xD8\xB0\xD9\x8A\xD8\xB9\xD8\xA9 22\xD8\xA3...', 'wp content uplo...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 37), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /www.watanserb.com/wp-content/uploads/2022/03/%D8%A7%D9%84%D8%A3%D8%B2%D9%85%D8%A9-%D8%A7%D9%84%D8%B1%D9%88%D8%B3%D9%8A%D8%A9-%D8%A7%D9%84%D8%A3%D9%88%D9%83%D8%B1%D8%A7%D9%86%D9%8A%D8%A9-scaled.jpeg, Stored debug messages: 2024-01-04 12:17:54 PST (DEBUG): Processing 404 for URL: /www.watanserb.com/wp-content/uploads/2022/03/الأزمة-الروسية-الأوكرانية-scaled.jpeg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Dalvik/2.1.0 (Linux; U; Android 12; SM-A525F Build/SP1A.210812.016), REMOTE_ADDR: 109.74.192.3ulfhq2p4vvg, REQUEST_URI: /www.watanserb.com/wp-content/uploads/2022/03/الأزمة-الروسية-الأوكرانية-scaled.jpeg 2024-01-04 12:17:55 PST (DEBUG): No posts or pages matching slug: الأزمة-الروسية-الأوكرانية-scaled.jpeg 2024-01-04 12:25:46 PST (DEBUG): Slow query (470.77 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(37, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(37) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xA7\xD9\x84\xD8\xA3\xD8\xB2\xD9\x85\xD8\xA9 \xD8\xA7...', 'www watanserb c...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xA7\xD9\x84\xD8\xA3\xD8\xB2\xD9\x85\xD8\xA9 \xD8\xA7...', 'www watanserb c...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('www.watanserb.c...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('www.watanserb.c...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/09/10/%D8%B4%D8%A7%D9%87%D8%AF-%D9%85%D8%A7%D8%B0%D8%A7-%D9%88%D8%AB%D9%82%D8%AA-%D8%B9%D8%AF%D8%B3%D8%A9-%D9%87%D8%A7%D8%AA%D9%81-%D9%87%D8%B0%D8%A7-%D8%A7%D9%84%D8%B4%D8%A7%D8%A8-%D8%A7%D9%84%D8%B3/leyutiy.net, Stored debug messages: 2024-01-04 12:18:05 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /2020/09/10/شاهد-ماذا-وثقت-عدسة-هاتف-هذا-الشاب-الس/leyutiy.net 2024-01-04 12:18:05 PST (DEBUG): Processing 404 for URL: /2020/09/10/شاهد-ماذا-وثقت-عدسة-هاتف-هذا-الشاب-الس/leyutiy.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 5.255.231.7rqu9pqpq9j0, REQUEST_URI: /2020/09/10/شاهد-ماذا-وثقت-عدسة-هاتف-هذا-الشاب-الس/leyutiy.net 2024-01-04 12:18:06 PST (DEBUG): No posts or pages matching slug: leyutiy.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (460.25 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('leyutiy net', '2020 09 10 \xD8\xB4\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'leyutiy net', '2020 09 10 \xD8\xB4\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/09/10/\xD8\xB4\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/09/10/\xD8\xB4\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 4), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /latest/tag/%D9%85%D8%B1%D9%88%D8%A9/, Stored debug messages: 2024-01-04 12:19:19 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /latest/tag/مروة/ 2024-01-04 12:19:19 PST (DEBUG): Processing 404 for URL: /latest/tag/مروة/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 66.249.69.45r375i2moj0, REQUEST_URI: /latest/tag/مروة/ 2024-01-04 12:19:20 PST (DEBUG): No posts or pages matching slug: مروة 2024-01-04 12:25:46 PST (DEBUG): Slow query (386.29 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(4, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(4) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD9\x85\xD8\xB1\xD9\x88\xD8\xA9', 'latest tag \xD9\x85\xD8\xB1...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD9\x85\xD8\xB1\xD9\x88\xD8\xA9', 'latest tag \xD9\x85\xD8\xB1...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('latest/tag/\xD9\x85\xD8\xB1...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('latest/tag/\xD9\x85\xD8\xB1...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 9), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/07/10/%D8%A8%D8%B9%D8%AF-%D8%B4%D9%83%D8%A7%D9%88%D9%89-%D8%A7%D9%84%D8%AC%D9%8A%D8%B1%D8%A7%D9%86-%D9%87%D8%B0%D8%A7-%D9%85%D8%A7-%D8%B6%D8%A8%D8%B7%D9%87-%D8%A7%D9%84%D8%A3%D9%85%D9%86-%D8%A7%D9%84/j9jyh.net, Stored debug messages: 2024-01-04 12:19:37 PST (DEBUG): Processing 404 for URL: /2020/07/10/بعد-شكاوى-الجيران-هذا-ما-ضبطه-الأمن-ال/j9jyh.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.62.6jr526g0l480, REQUEST_URI: /2020/07/10/بعد-شكاوى-الجيران-هذا-ما-ضبطه-الأمن-ال/j9jyh.net 2024-01-04 12:19:38 PST (DEBUG): No posts or pages matching slug: j9jyh.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (368.43 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(9, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(9) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('j9jyh net', '2020 07 10 \xD8\xA8\xD8\xB9...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'j9jyh net', '2020 07 10 \xD8\xA8\xD8\xB9...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/07/10/\xD8\xA8\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/07/10/\xD8\xA8\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/05/16/%D8%AC%D8%AF%D9%88%D9%84-%D8%AA%D8%B1%D8%AA%D9%8A%D8%A8-%D8%A7%D9%84%D8%AF%D9%88%D8%B1%D9%8A-%D8%A7%D9%84%D9%85%D8%B5%D8%B1%D9%8A-2022-%D8%A8%D8%B9%D8%AF-%D9%81%D9%88%D8%B2-%D8%A7%D9%84%D8%A5%D8%B3/kaifayl.com%22, Stored debug messages: 2024-01-04 12:19:39 PST (DEBUG): Processing 404 for URL: /2022/05/16/جدول-ترتيب-الدوري-المصري-2022-بعد-فوز-الإس/kaifayl.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.48.5l7ct3qqlp20, REQUEST_URI: /2022/05/16/جدول-ترتيب-الدوري-المصري-2022-بعد-فوز-الإس/kaifayl.com" 2024-01-04 12:19:40 PST (DEBUG): No posts or pages matching slug: kaifayl.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (365.71 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaifayl com', '2022 05 16 \xD8\xAC\xD8\xAF...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaifayl com', '2022 05 16 \xD8\xAC\xD8\xAF...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/05/16/\xD8\xAC\xD8\xAF...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/05/16/\xD8\xAC\xD8\xAF...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/07/06/%D8%A7%D9%84%D8%A3%D9%85%D9%8A%D8%B1%D8%A9-%D9%87%D9%8A%D8%A7-%D8%A8%D9%86%D8%AA-%D8%A7%D9%84%D8%AD%D8%B3%D9%8A%D9%86-%D8%AA%D9%86%D8%A8%D8%B4-%D8%A3%D8%B3%D8%B1%D8%A7%D8%B1-%D8%A7%D8%A8%D9%86/jnty168.net, Stored debug messages: 2024-01-04 12:24:11 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2019/07/06/الأميرة-هيا-بنت-الحسين-تنبش-أسرار-ابن/jnty168.net 2024-01-04 12:24:11 PST (DEBUG): Processing 404 for URL: /2019/07/06/الأميرة-هيا-بنت-الحسين-تنبش-أسرار-ابن/jnty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2019/07/06/الأميرة-هيا-بنت-الحسين-تنبش-أسرار-ابن/jnty168.net 2024-01-04 12:24:12 PST (DEBUG): No posts or pages matching slug: jnty168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (94.43 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('jnty168 net', '2019 07 06 \xD8\xA7\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'jnty168 net', '2019 07 06 \xD8\xA7\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/07/06/\xD8\xA7\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/07/06/\xD8\xA7\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 8), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/08/06/%D9%83%D9%8A%D9%85-%D9%83%D8%A7%D8%B1%D8%AF%D8%B4%D9%8A%D8%A7%D9%86-%D8%AA%D9%86%D9%81%D8%B5%D9%84-%D8%B9%D9%86-%D8%B9%D8%B4%D9%8A%D9%82%D9%87%D8%A7-%D8%A7%D9%84%D8%AC%D8%AF%D9%8A%D8%AF/pmzr.org, Stored debug messages: 2024-01-04 12:18:05 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/08/06/كيم-كاردشيان-تنفصل-عن-عشيقها-الجديد/pmzr.org 2024-01-04 12:18:05 PST (DEBUG): Processing 404 for URL: /2022/08/06/كيم-كاردشيان-تنفصل-عن-عشيقها-الجديد/pmzr.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2022/08/06/كيم-كاردشيان-تنفصل-عن-عشيقها-الجديد/pmzr.org 2024-01-04 12:18:06 PST (DEBUG): No posts or pages matching slug: pmzr.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (459.94 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(8, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(8) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pmzr org', '2022 08 06 \xD9\x83\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pmzr org', '2022 08 06 \xD9\x83\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/08/06/\xD9\x83\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/08/06/\xD9\x83\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/08/29/%D8%AF%D9%8A%D9%85%D8%A7-%D8%A8%D9%8A%D8%A7%D8%B9%D8%A9-%D8%A8%D8%AF%D9%88%D9%86-%D9%85%D9%83%D9%8A%D8%A7%D8%AC-%D9%88%D8%A8%D8%AF%D9%88%D9%86-%D9%85%D9%84%D8%A7%D8%A8%D8%B3-%D8%A3%D9%8A%D8%B6%D8%A7/imty168.com, Stored debug messages: 2024-01-04 12:20:51 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /2023/08/29/ديما-بياعة-بدون-مكياج-وبدون-ملابس-أيضا/imty168.com 2024-01-04 12:20:51 PST (DEBUG): Processing 404 for URL: /2023/08/29/ديما-بياعة-بدون-مكياج-وبدون-ملابس-أيضا/imty168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /2023/08/29/ديما-بياعة-بدون-مكياج-وبدون-ملابس-أيضا/imty168.com 2024-01-04 12:20:52 PST (DEBUG): No posts or pages matching slug: imty168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (294.46 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('imty168 com', '2023 08 29 \xD8\xAF\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'imty168 com', '2023 08 29 \xD8\xAF\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/08/29/\xD8\xAF\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/08/29/\xD8\xAF\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/05/30/%D8%A7%D9%84%D8%B3%D9%8A%D8%B3%D9%8A-%D8%A3%D9%86%D8%A7-%D9%85%D8%A7-%D8%A3%D9%82%D8%AF%D8%B1%D8%B4-%D8%A3%D9%86%D8%A7%D9%85-%D9%88%D8%A3%D8%A8%D9%82%D9%89-%D9%85%D8%A8%D8%B3%D9%88%D8%B7-%D9%88/tbtiyu188.com, Stored debug messages: 2024-01-04 12:20:54 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/05/30/السيسي-أنا-ما-أقدرش-أنام-وأبقى-مبسوط-و/tbtiyu188.com 2024-01-04 12:20:54 PST (DEBUG): Processing 404 for URL: /2016/05/30/السيسي-أنا-ما-أقدرش-أنام-وأبقى-مبسوط-و/tbtiyu188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2016/05/30/السيسي-أنا-ما-أقدرش-أنام-وأبقى-مبسوط-و/tbtiyu188.com 2024-01-04 12:20:55 PST (DEBUG): No posts or pages matching slug: tbtiyu188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (291.1 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('tbtiyu188 com', '2016 05 30 \xD8\xA7\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'tbtiyu188 com', '2016 05 30 \xD8\xA7\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/05/30/\xD8\xA7\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/05/30/\xD8\xA7\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 76), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /www.watanserb.com/wp-content/uploads/2022/03/%D8%A3%D9%88%D9%83%D8%B1%D8%A7%D9%86%D9%8A%D8%A7-%D8%AA%D8%B9%D9%84%D9%86-%D8%A5%D8%A8%D8%A7%D8%AF%D8%A9-%D9%81%D8%B1%D9%82%D8%A9-%D9%85%D9%86-%D8%A7%D9%84%D9%85%D9%82%D8%A7%D8%AA%D9%84%D9%8A%D9%86-%D8%A7%D9%84%D8%B4%D9%8A%D8%B4%D8%A7%D9%86-%D8%AE%D8%B7%D8%B7%D8%AA-%D9%84%D9%82%D8%AA%D9%84-%D8%A7%D9%84%D8%B1%D8%A6%D9%8A%D8%B3-%D8%A7%D9%84%D8%A3%D9%88%D9%83%D8%B1%D8%A7%D9%86%D9%8A.jpg, Stored debug messages: 2024-01-04 12:18:17 PST (DEBUG): Processing 404 for URL: /www.watanserb.com/wp-content/uploads/2022/03/أوكرانيا-تعلن-إبادة-فرقة-من-المقاتلين-الشيشان-خططت-لقتل-الرئيس-الأوكراني.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Dalvik/2.1.0 (Linux; U; Android 12; SM-A525F Build/SP1A.210812.016), REMOTE_ADDR: 109.74.192.3ulfhq2p4vvg, REQUEST_URI: /www.watanserb.com/wp-content/uploads/2022/03/أوكرانيا-تعلن-إبادة-فرقة-من-المقاتلين-الشيشان-خططت-لقتل-الرئيس-الأوكراني.jpg 2024-01-04 12:18:18 PST (DEBUG): No posts or pages matching slug: أوكرانيا-تعلن-إبادة-فرقة-من-المقاتلين-الشيشان-خططت-لقتل-الرئيس-الأوكراني.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (447.95 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(76, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(76) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xA3\xD9\x88\xD9\x83\xD8\xB1\xD8\xA7\xD9\x86\xD9\x8A\xD8...', 'www watanserb c...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xA3\xD9\x88\xD9\x83\xD8\xB1\xD8\xA7\xD9\x86\xD9\x8A\xD8...', 'www watanserb c...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('www.watanserb.c...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('www.watanserb.c...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/08/18/%D8%A8%D8%B9%D8%AF-%D8%A7%D9%84%D9%86%D9%82%D8%A7%D8%A8-%D8%B1%D8%B4%D9%8A%D8%AF-%D9%86%D9%83%D9%91%D8%A7%D8%B2-%D9%8A%D8%AA%D9%83%D9%81%D9%84-%D8%A8%D8%AF%D9%81%D8%B9-%D8%BA%D8%B1/kaifayl.com, Stored debug messages: 2024-01-04 12:19:59 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/08/18/بعد-النقاب-رشيد-نكّاز-يتكفل-بدفع-غر/kaifayl.com 2024-01-04 12:19:59 PST (DEBUG): Processing 404 for URL: /2016/08/18/بعد-النقاب-رشيد-نكّاز-يتكفل-بدفع-غر/kaifayl.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4ou4rgg881j0, REQUEST_URI: /2016/08/18/بعد-النقاب-رشيد-نكّاز-يتكفل-بدفع-غر/kaifayl.com 2024-01-04 12:20:00 PST (DEBUG): No posts or pages matching slug: kaifayl.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (346.27 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaifayl com', '2016 08 18 \xD8\xA8\xD8\xB9...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaifayl com', '2016 08 18 \xD8\xA8\xD8\xB9...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/08/18/\xD8\xA8\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/08/18/\xD8\xA8\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 31), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/BhvDr-fhIOTg8j-0CeI3fVO8Dao.jpg, Stored debug messages: 2024-01-04 12:19:09 PST (DEBUG): Ignoring user agent (process ok): facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) for URL: /wp-content/uploads/BhvDr-fhIOTg8j-0CeI3fVO8Dao.jpg 2024-01-04 12:19:09 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/BhvDr-fhIOTg8j-0CeI3fVO8Dao.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php), REMOTE_ADDR: 2a03:2880:31ff:58fvr7j8njt0, REQUEST_URI: /wp-content/uploads/BhvDr-fhIOTg8j-0CeI3fVO8Dao.jpg 2024-01-04 12:19:10 PST (DEBUG): No posts or pages matching slug: BhvDr-fhIOTg8j-0CeI3fVO8Dao.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (396.33 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(31, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(31) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('BhvDr fhIOTg8j ...', 'wp content uplo...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'BhvDr fhIOTg8j ...', 'wp content uplo...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/07/25/%D9%85%D9%86-%D9%87%D9%88-%D8%A7%D9%84%D9%85%D8%AF%D8%B1%D8%A8-%D8%B3%D8%AA%D8%A7%D9%86%D9%8A%D8%B3%D9%84%D8%A7%D9%81-%D8%AA%D8%B4%D9%8A%D8%B1%D8%AA%D8%B4%D9%8A%D8%B3%D9%88%D9%81-%D8%A7%D9%84%D9%85/kokty168.net, Stored debug messages: 2024-01-04 12:24:14 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/07/25/من-هو-المدرب-ستانيسلاف-تشيرتشيسوف-الم/kokty168.net 2024-01-04 12:24:14 PST (DEBUG): Processing 404 for URL: /2023/07/25/من-هو-المدرب-ستانيسلاف-تشيرتشيسوف-الم/kokty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /2023/07/25/من-هو-المدرب-ستانيسلاف-تشيرتشيسوف-الم/kokty168.net 2024-01-04 12:24:15 PST (DEBUG): No posts or pages matching slug: kokty168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (90.89 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kokty168 net', '2023 07 25 \xD9\x85\xD9\x86...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kokty168 net', '2023 07 25 \xD9\x85\xD9\x86...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/07/25/\xD9\x85\xD9\x86...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/07/25/\xD9\x85\xD9\x86...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 46), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /www.watanserb.com/wp-content/uploads/2022/03/%D8%A7%D9%84%D8%AC%D9%8A%D8%B4-%D8%A7%D9%84%D8%B1%D9%88%D8%B3%D9%8A-%D9%8A%D9%82%D8%B5%D9%81-%D9%85%D8%A8%D9%86%D9%89-%D8%A7%D9%84%D8%AA%D9%84%D9%81%D8%B2%D9%8A%D9%88%D9%86-%D8%A7%D9%84%D8%A3%D9%88%D9%83%D8%B1%D8%A7%D9%86%D9%8A.jpg, Stored debug messages: 2024-01-04 12:18:16 PST (DEBUG): Processing 404 for URL: /www.watanserb.com/wp-content/uploads/2022/03/الجيش-الروسي-يقصف-مبنى-التلفزيون-الأوكراني.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Dalvik/2.1.0 (Linux; U; Android 12; SM-A525F Build/SP1A.210812.016), REMOTE_ADDR: 109.74.192.3ulfhq2p4vvg, REQUEST_URI: /www.watanserb.com/wp-content/uploads/2022/03/الجيش-الروسي-يقصف-مبنى-التلفزيون-الأوكراني.jpg 2024-01-04 12:18:17 PST (DEBUG): No posts or pages matching slug: الجيش-الروسي-يقصف-مبنى-التلفزيون-الأوكراني.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (449.3 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(46, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(46) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xA7\xD9\x84\xD8\xAC\xD9\x8A\xD8\xB4 \xD8\xA7\xD9\x84...', 'www watanserb c...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xA7\xD9\x84\xD8\xAC\xD9\x8A\xD8\xB4 \xD8\xA7\xD9\x84...', 'www watanserb c...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('www.watanserb.c...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('www.watanserb.c...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/12/08/%D8%A8%D9%8A%D9%86%D9%85%D8%A7-%D9%85%D8%AD%D8%A7%D8%B5%D8%B1%D9%88%D9%87%D8%A7-%D8%BA%D8%A7%D8%B1%D9%82%D9%88%D9%86-%D8%B3%D8%AA%D8%A7%D9%86%D8%AF%D8%B1%D8%AF-%D8%A2%D9%86%D8%AF-%D8%A8%D9%88/leyutiy.net, Stored debug messages: 2024-01-04 12:23:49 PST (DEBUG): Processing 404 for URL: /2018/12/08/بينما-محاصروها-غارقون-ستاندرد-آند-بو/leyutiy.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.31.74r8tnveue40, REQUEST_URI: /2018/12/08/بينما-محاصروها-غارقون-ستاندرد-آند-بو/leyutiy.net 2024-01-04 12:23:50 PST (DEBUG): No posts or pages matching slug: leyutiy.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (116.18 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('leyutiy net', '2018 12 08 \xD8\xA8\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'leyutiy net', '2018 12 08 \xD8\xA8\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/12/08/\xD8\xA8\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/12/08/\xD8\xA8\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 19), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: http://sucuri.net, Requested URL: //wp-includes/js/scriptaculous/wp-scriptaculous.js, Stored debug messages: 2024-01-04 12:19:24 PST (DEBUG): Processing 404 for URL: /wp-includes/js/scriptaculous/wp-scriptaculous.js | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:96.0) Gecko/20100101 Firefox/96.0, REMOTE_ADDR: 69.164.219.3cgd4sosj0m0, REQUEST_URI: //wp-includes/js/scriptaculous/wp-scriptaculous.js 2024-01-04 12:19:25 PST (DEBUG): No posts or pages matching slug: wp-scriptaculous.js 2024-01-04 12:25:46 PST (DEBUG): Slow query (381.3 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(19, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(19) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('wp scriptaculou...', 'wp includes js ...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'wp scriptaculou...', 'wp includes js ...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-includes/js/...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-includes/js/...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/09/03/%D9%85%D9%85%D8%AB%D9%84%D8%A9-%D8%A5%D8%A8%D8%A7%D8%AD%D9%8A%D8%A9-%D9%86%D9%8F%D9%86%D8%AA%D8%AC-%D8%A3%D9%81%D9%84%D8%A7%D9%85%D9%86%D8%A7-%D9%84%D9%84%D9%81%D8%A7%D8%B4%D9%84%D9%8A%D9%86-%D9%81/yxty168.org%22, Stored debug messages: 2024-01-04 12:19:36 PST (DEBUG): Processing 404 for URL: /2016/09/03/ممثلة-إباحية-نُنتج-أفلامنا-للفاشلين-ف/yxty168.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.53.1hvru0slocmg, REQUEST_URI: /2016/09/03/ممثلة-إباحية-نُنتج-أفلامنا-للفاشلين-ف/yxty168.org" 2024-01-04 12:19:37 PST (DEBUG): No posts or pages matching slug: yxty168.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (368.75 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('yxty168 org', '2016 09 03 \xD9\x85\xD9\x85...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'yxty168 org', '2016 09 03 \xD9\x85\xD9\x85...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/09/03/\xD9\x85\xD9\x85...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/09/03/\xD9\x85\xD9\x85...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/03/07/%D9%82%D9%8A%D9%85%D8%A9-%D8%A7%D9%84%D9%85%D9%86%D8%B2%D9%84-%D8%A7%D9%84%D8%A3%D8%B5%D9%84%D9%8A%D8%A9-%D8%AA%D8%B5%D9%84-%D8%A5%D9%84%D9%89-3-%D9%85%D9%84%D8%A7%D9%8A%D9%8A%D9%86-%D8%AF%D9%88%D9%84/bdtiyu168.com, Stored debug messages: 2024-01-04 12:21:37 PST (DEBUG): Processing 404 for URL: /2018/03/07/قيمة-المنزل-الأصلية-تصل-إلى-3-ملايين-دول/bdtiyu168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.58.7kn7m31bcvd0, REQUEST_URI: /2018/03/07/قيمة-المنزل-الأصلية-تصل-إلى-3-ملايين-دول/bdtiyu168.com 2024-01-04 12:21:38 PST (DEBUG): No posts or pages matching slug: bdtiyu168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (247.83 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('bdtiyu168 com', '2018 03 07 \xD9\x82\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'bdtiyu168 com', '2018 03 07 \xD9\x82\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/03/07/\xD9\x82\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/03/07/\xD9\x82\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/06/19/%D8%AA%D9%82%D9%84%D9%84-%D8%B4%D9%87%D9%8A%D8%AA%D9%83-%D9%87%D9%83%D8%B0%D8%A7-%D8%A7%D8%AE%D8%AA%D8%A7%D8%B1%D8%AA-%D8%AC%D9%88%D8%B1%D8%AC%D9%8A%D9%86%D8%A7-%D8%B1%D9%88%D8%AF%D8%B1%D9%8A/kaiyuanqp.net, Stored debug messages: 2024-01-04 12:22:44 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/06/19/تقلل-شهيتك-هكذا-اختارت-جورجينا-رودري/kaiyuanqp.net 2024-01-04 12:22:44 PST (DEBUG): Processing 404 for URL: /2023/06/19/تقلل-شهيتك-هكذا-اختارت-جورجينا-رودري/kaiyuanqp.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /2023/06/19/تقلل-شهيتك-هكذا-اختارت-جورجينا-رودري/kaiyuanqp.net 2024-01-04 12:22:45 PST (DEBUG): No posts or pages matching slug: kaiyuanqp.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (180.71 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaiyuanqp net', '2023 06 19 \xD8\xAA\xD9\x82...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaiyuanqp net', '2023 06 19 \xD8\xAA\xD9\x82...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/06/19/\xD8\xAA\xD9\x82...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/06/19/\xD8\xAA\xD9\x82...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/02/12/%D9%81%D9%8A%D8%AF%D9%8A%D9%88-%D9%81%D8%AA%D8%A7%D8%A9-%D9%85%D8%AD%D8%AC%D8%A8%D8%A9-%D9%81%D9%8A-%D8%A3%D9%85%D8%B1%D9%8A%D9%83%D8%A7-%D8%AA%D8%B7%D9%84%D8%A8-%D8%B1%D9%82%D9%85-%D8%B4%D8%A7%D8%A8/huatihui.work, Stored debug messages: 2024-01-04 12:23:52 PST (DEBUG): Processing 404 for URL: /2016/02/12/فيديو-فتاة-محجبة-في-أمريكا-تطلب-رقم-شاب/huatihui.work | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.39.97tiu1052io0, REQUEST_URI: /2016/02/12/فيديو-فتاة-محجبة-في-أمريكا-تطلب-رقم-شاب/huatihui.work 2024-01-04 12:23:53 PST (DEBUG): No posts or pages matching slug: huatihui.work 2024-01-04 12:25:46 PST (DEBUG): Slow query (112.89 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('huatihui work', '2016 02 12 \xD9\x81\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'huatihui work', '2016 02 12 \xD9\x81\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/02/12/\xD9\x81\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/02/12/\xD9\x81\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 4), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /latest/feed/, Stored debug messages: 2024-01-04 12:22:39 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /latest/feed/ 2024-01-04 12:22:39 PST (DEBUG): Processing 404 for URL: /latest/feed/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 66.249.77.3lfd85pv9kp0, REQUEST_URI: /latest/feed/ 2024-01-04 12:22:40 PST (DEBUG): No posts or pages matching slug: feed 2024-01-04 12:25:46 PST (DEBUG): Slow query (186.35 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(4, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(4) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('feed', 'latest feed ', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'feed', 'latest feed ', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('latest/feed/', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('latest/feed/') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 8), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/09/09/%D9%85%D8%AB%D9%84-%D8%A7%D9%84%D8%B2%D9%88%D8%AC%D8%A9-%D8%A7%D9%84%D8%AA%D9%8A-%D8%AA%D8%B1%D9%87%D9%86-%D8%AE%D8%B7%D8%A8%D8%A9-%D8%A7%D8%A8%D9%86%D8%AA%D9%87%D8%A7-%D8%A8%D9%85%D9%88%D8%A7%D9%81/pmzr.org, Stored debug messages: 2024-01-04 12:18:19 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/09/09/مثل-الزوجة-التي-ترهن-خطبة-ابنتها-بمواف/pmzr.org 2024-01-04 12:18:19 PST (DEBUG): Processing 404 for URL: /2018/09/09/مثل-الزوجة-التي-ترهن-خطبة-ابنتها-بمواف/pmzr.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2018/09/09/مثل-الزوجة-التي-ترهن-خطبة-ابنتها-بمواف/pmzr.org 2024-01-04 12:18:20 PST (DEBUG): No posts or pages matching slug: pmzr.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (446.21 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(8, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(8) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pmzr org', '2018 09 09 \xD9\x85\xD8\xAB...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pmzr org', '2018 09 09 \xD9\x85\xD8\xAB...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/09/09/\xD9\x85\xD8\xAB...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/09/09/\xD9\x85\xD8\xAB...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 10), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/12/17/%D9%87%D8%B0%D9%87-%D8%AD%D9%82%D9%8A%D9%82%D8%A9-%D9%85%D8%A7-%D9%8A%D9%8F%D8%AA%D8%AF%D8%A7%D9%88%D9%84-%D9%81%D9%8A-%D8%B3%D9%84%D8%B7%D9%86%D8%A9-%D8%B9%D9%8F%D9%85%D8%A7%D9%86-%D8%B9%D9%86-%D9%85/%E5%BC%80%E4%BA%91%E4%BD%93%E8%82%B2%E5%B9%B3%E5%8F%B0.com, Stored debug messages: 2024-01-04 12:19:36 PST (DEBUG): Processing 404 for URL: /2018/12/17/هذه-حقيقة-ما-يُتداول-في-سلطنة-عُمان-عن-م/开云体育平台.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.37.68vvkqb1th50, REQUEST_URI: /2018/12/17/هذه-حقيقة-ما-يُتداول-في-سلطنة-عُمان-عن-م/开云体育平台.com 2024-01-04 12:19:37 PST (DEBUG): No posts or pages matching slug: 开云体育平台.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (369.47 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(10, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(10) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xE5\xBC\x80\xE4\xBA\x91\xE4\xBD\x93\xE8\x82\xB2\xE5\xB9\xB3...', '2018 12 17 \xD9\x87\xD8\xB0...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xE5\xBC\x80\xE4\xBA\x91\xE4\xBD\x93\xE8\x82\xB2\xE5\xB9\xB3...', '2018 12 17 \xD9\x87\xD8\xB0...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/12/17/\xD9\x87\xD8\xB0...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/12/17/\xD9\x87\xD8\xB0...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/06/13/%D8%B4%D8%A7%D9%87%D8%AF-%D9%85%D8%AD%D9%84%D9%84-%D8%B9%D9%85%D8%A7%D9%86%D9%8A-%D8%B9%D9%86-%D8%B2%D9%8A%D8%A7%D8%B1%D8%A9-%D9%87%D8%A7%D8%AF%D9%8A-%D9%84%D9%80-%D8%A7%D9%84%D8%A5%D9%85/wanbo168.net, Stored debug messages: 2024-01-04 12:22:41 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/06/13/شاهد-محلل-عماني-عن-زيارة-هادي-لـ-الإم/wanbo168.net 2024-01-04 12:22:41 PST (DEBUG): Processing 404 for URL: /2018/06/13/شاهد-محلل-عماني-عن-زيارة-هادي-لـ-الإم/wanbo168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /2018/06/13/شاهد-محلل-عماني-عن-زيارة-هادي-لـ-الإم/wanbo168.net 2024-01-04 12:22:42 PST (DEBUG): No posts or pages matching slug: wanbo168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (184.33 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('wanbo168 net', '2018 06 13 \xD8\xB4\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'wanbo168 net', '2018 06 13 \xD8\xB4\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/06/13/\xD8\xB4\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/06/13/\xD8\xB4\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/11/09/%D8%A7%D8%A8%D9%86-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D9%8A%D8%AF%D8%AE%D9%84-%D8%A7%D9%84%D9%85%D9%88%D8%B3%D9%8A%D9%82%D9%89-%D9%88%D8%A7%D9%84%D8%B1%D9%82%D8%B5-%D8%B6%D9%85%D9%86/xcai188.com, Stored debug messages: 2024-01-04 12:22:48 PST (DEBUG): Processing 404 for URL: /2019/11/09/ابن-سلمان-يدخل-الموسيقى-والرقص-ضمن/xcai188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com), REMOTE_ADDR: 216.244.66.3gbsgn50q6d0, REQUEST_URI: /2019/11/09/ابن-سلمان-يدخل-الموسيقى-والرقص-ضمن/xcai188.com 2024-01-04 12:22:48 PST (DEBUG): No posts or pages matching slug: xcai188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (177.61 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('xcai188 com', '2019 11 09 \xD8\xA7\xD8\xA8...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'xcai188 com', '2019 11 09 \xD8\xA7\xD8\xA8...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/11/09/\xD8\xA7\xD8\xA8...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/11/09/\xD8\xA7\xD8\xA8...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/09/13/%D8%A8%D8%B9%D8%AF-%D8%B6%D8%AC%D8%A9-%D9%83%D8%A8%D9%8A%D8%B1%D8%A9-%D9%87%D8%B0%D8%A7-%D9%85%D8%A7-%D9%83%D8%B4%D9%81%D8%AA%D9%87-%D8%B4%D8%B1%D9%83%D8%A9-%D8%AC%D9%84%D9%81%D8%A7%D8%B1/kaiyuncn.net, Stored debug messages: 2024-01-04 12:18:07 PST (DEBUG): Processing 404 for URL: /2019/09/13/بعد-ضجة-كبيرة-هذا-ما-كشفته-شركة-جلفار/kaiyuncn.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com), REMOTE_ADDR: 216.244.66.3gbsgn50q6d0, REQUEST_URI: /2019/09/13/بعد-ضجة-كبيرة-هذا-ما-كشفته-شركة-جلفار/kaiyuncn.net 2024-01-04 12:18:08 PST (DEBUG): No posts or pages matching slug: kaiyuncn.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (458.17 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaiyuncn net', '2019 09 13 \xD8\xA8\xD8\xB9...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaiyuncn net', '2019 09 13 \xD8\xA8\xD8\xB9...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/09/13/\xD8\xA8\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/09/13/\xD8\xA8\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 17), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/04/16/%D9%85%D8%B0%D9%8A%D8%B9%D8%A9-%D8%A5%D9%85-%D8%A8%D9%8A-%D8%B3%D9%8A-%D8%A3%D8%B5%D8%A7%D9%84%D8%A9-%D9%83%D8%A7%D9%85%D9%84-%D8%AA%D8%AB%D9%8A%D8%B1-%D8%A7%D9%84%D8%AC%D8%AF%D9%84-%D8%A8%D9%81/jiangnanty188.com, Stored debug messages: 2024-01-04 12:24:02 PST (DEBUG): Processing 404 for URL: /2020/04/16/مذيعة-إم-بي-سي-أصالة-كامل-تثير-الجدل-بف/jiangnanty188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.36.345q9evdsk40, REQUEST_URI: /2020/04/16/مذيعة-إم-بي-سي-أصالة-كامل-تثير-الجدل-بف/jiangnanty188.com 2024-01-04 12:24:03 PST (DEBUG): No posts or pages matching slug: jiangnanty188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (103.37 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(17, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(17) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('jiangnanty188 c...', '2020 04 16 \xD9\x85\xD8\xB0...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'jiangnanty188 c...', '2020 04 16 \xD9\x85\xD8\xB0...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/04/16/\xD9\x85\xD8\xB0...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/04/16/\xD9\x85\xD8\xB0...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 4), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /story_type/%d9%82%d8%b5%d8%b5-%d8%a5%d8%ae%d8%a8%d8%a7%d8%b1%d9%8a%d8%a9/feed/, Stored debug messages: 2024-01-04 12:18:03 PST (DEBUG): Processing 404 for URL: /story_type/قصص-إخبارية/feed/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: UniversalFeedParser/5.2.1 +https://code.google.com/p/feedparser/, REMOTE_ADDR: 2001:1470:ff80:3uq8dg9g6ss0, REQUEST_URI: /story_type/قصص-إخبارية/feed/ 2024-01-04 12:18:04 PST (DEBUG): No posts or pages matching slug: feed 2024-01-04 12:25:46 PST (DEBUG): Slow query (462.31 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(4, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(4) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('feed', 'story type \xD9\x82\xD8\xB5...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'feed', 'story type \xD9\x82\xD8\xB5...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('story_type/\xD9\x82\xD8\xB5...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('story_type/\xD9\x82\xD8\xB5...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/04/04/%D8%A7%D9%84%D8%AD%D9%88%D8%AB%D9%8A-%D9%8A%D8%A8%D8%B9%D8%AB-%D8%A8%D8%B1%D8%B3%D8%A7%D9%84%D8%A9-%D9%84%D9%85%D9%84%D9%83-%D8%A7%D9%84%D8%A3%D8%B1%D8%AF%D9%86-%D8%A8%D8%B9%D8%AF-%D8%A5%D8%AD%D8%A8/kokty168.com, Stored debug messages: 2024-01-04 12:17:53 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/04/04/الحوثي-يبعث-برسالة-لملك-الأردن-بعد-إحب/kokty168.com 2024-01-04 12:17:53 PST (DEBUG): Processing 404 for URL: /2021/04/04/الحوثي-يبعث-برسالة-لملك-الأردن-بعد-إحب/kokty168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2021/04/04/الحوثي-يبعث-برسالة-لملك-الأردن-بعد-إحب/kokty168.com 2024-01-04 12:17:53 PST (DEBUG): No posts or pages matching slug: kokty168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (472.55 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kokty168 com', '2021 04 04 \xD8\xA7\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kokty168 com', '2021 04 04 \xD8\xA7\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/04/04/\xD8\xA7\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/04/04/\xD8\xA7\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/06/08/%D8%A7%D9%84%D9%85%D9%82%D8%A7%D8%AA%D9%84-%D9%85%D8%AD%D9%85%D8%AF-%D8%B5%D9%84%D8%A7%D8%AD-%D9%8A%D9%83%D8%B4%D9%81-%D8%AD%D9%82%D9%8A%D9%82%D8%A9-%D8%B9%D8%AF%D9%85-%D9%85%D8%B4%D8%A7%D8%B1/leyutiy.net, Stored debug messages: 2024-01-04 12:24:02 PST (DEBUG): Processing 404 for URL: /2018/06/08/المقاتل-محمد-صلاح-يكشف-حقيقة-عدم-مشار/leyutiy.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.56.5dc6lh8ch3u0, REQUEST_URI: /2018/06/08/المقاتل-محمد-صلاح-يكشف-حقيقة-عدم-مشار/leyutiy.net 2024-01-04 12:24:03 PST (DEBUG): No posts or pages matching slug: leyutiy.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (103.25 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('leyutiy net', '2018 06 08 \xD8\xA7\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'leyutiy net', '2018 06 08 \xD8\xA7\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/06/08/\xD8\xA7\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/06/08/\xD8\xA7\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 10), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/06/09/%D9%85%D8%B4%D9%87%D8%AF-%D8%AC%D9%86%D8%B3%D9%8A-%D9%81%D8%A7%D8%B6%D8%AD-%D9%84%D9%80-%D9%86%D8%A8%D9%8A%D9%84%D8%A9-%D8%B9%D8%A8%D9%8A%D8%AF-%D9%85%D9%86-%D8%A3%D9%8A%D8%A7%D9%85-%D8%A7%D9%84/mileyl.com, Stored debug messages: 2024-01-04 12:20:29 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2020/06/09/مشهد-جنسي-فاضح-لـ-نبيلة-عبيد-من-أيام-ال/mileyl.com 2024-01-04 12:20:29 PST (DEBUG): Processing 404 for URL: /2020/06/09/مشهد-جنسي-فاضح-لـ-نبيلة-عبيد-من-أيام-ال/mileyl.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2020/06/09/مشهد-جنسي-فاضح-لـ-نبيلة-عبيد-من-أيام-ال/mileyl.com 2024-01-04 12:20:30 PST (DEBUG): No posts or pages matching slug: mileyl.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (316.27 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(10, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(10) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('mileyl com', '2020 06 09 \xD9\x85\xD8\xB4...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'mileyl com', '2020 06 09 \xD9\x85\xD8\xB4...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/06/09/\xD9\x85\xD8\xB4...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/06/09/\xD9\x85\xD8\xB4...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/03/16/%D9%88%D8%B2%D9%8A%D8%B1-%D8%AF%D9%81%D8%A7%D8%B9-%D9%82%D8%B7%D8%B1-%D8%A7%D9%84%D8%AC%D9%86%D8%AF%D9%8A-%D8%A7%D9%84%D9%82%D8%B7%D8%B1%D9%8A-%D8%A3%D9%81%D8%B6%D9%84-%D8%AC%D9%86%D8%AF%D9%8A-%D8%A8/fbty168.net, Stored debug messages: 2024-01-04 12:19:36 PST (DEBUG): Processing 404 for URL: /2018/03/16/وزير-دفاع-قطر-الجندي-القطري-أفضل-جندي-ب/fbty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.98.3cgd4sosj0m0, REQUEST_URI: /2018/03/16/وزير-دفاع-قطر-الجندي-القطري-أفضل-جندي-ب/fbty168.net 2024-01-04 12:19:37 PST (DEBUG): No posts or pages matching slug: fbty168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (368.7 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('fbty168 net', '2018 03 16 \xD9\x88\xD8\xB2...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'fbty168 net', '2018 03 16 \xD9\x88\xD8\xB2...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/03/16/\xD9\x88\xD8\xB2...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/03/16/\xD9\x88\xD8\xB2...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/03/27/%D9%85%D8%B4%D9%87%D8%AF-%D9%8A%D8%AF%D9%85%D9%8A-%D8%A7%D9%84%D9%82%D9%84%D8%A8-%D9%84%D8%B3%D9%88%D8%B1%D9%8A%D8%AA%D9%8A%D9%86-%D9%81%D9%8A-%D9%84%D8%A8%D9%86%D8%A7%D9%86/agzr188.com, Stored debug messages: 2024-01-04 12:19:53 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/03/27/مشهد-يدمي-القلب-لسوريتين-في-لبنان/agzr188.com 2024-01-04 12:19:53 PST (DEBUG): Processing 404 for URL: /2021/03/27/مشهد-يدمي-القلب-لسوريتين-في-لبنان/agzr188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4ou4rgg881j0, REQUEST_URI: /2021/03/27/مشهد-يدمي-القلب-لسوريتين-في-لبنان/agzr188.com 2024-01-04 12:19:54 PST (DEBUG): No posts or pages matching slug: agzr188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (352.2 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzr188 com', '2021 03 27 \xD9\x85\xD8\xB4...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzr188 com', '2021 03 27 \xD9\x85\xD8\xB4...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/03/27/\xD9\x85\xD8\xB4...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/03/27/\xD9\x85\xD8\xB4...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 4), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /latest/tag/%D8%B4%D8%B0%D9%88%D8%B0/, Stored debug messages: 2024-01-04 12:19:16 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /latest/tag/شذوذ/ 2024-01-04 12:19:16 PST (DEBUG): Processing 404 for URL: /latest/tag/شذوذ/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 66.249.69.ecmbirjj8rc0, REQUEST_URI: /latest/tag/شذوذ/ 2024-01-04 12:19:17 PST (DEBUG): No posts or pages matching slug: شذوذ 2024-01-04 12:25:46 PST (DEBUG): Slow query (389.5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(4, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(4) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xB4\xD8\xB0\xD9\x88\xD8\xB0', 'latest tag \xD8\xB4\xD8\xB0...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xB4\xD8\xB0\xD9\x88\xD8\xB0', 'latest tag \xD8\xB4\xD8\xB0...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('latest/tag/\xD8\xB4\xD8\xB0...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('latest/tag/\xD8\xB4\xD8\xB0...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 17), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /watan/2023/09/18/%D8%B9%D8%B4%D9%8A%D9%82-%D8%A7%D8%A8%D9%86%D8%A9-%D8%B9%D9%85%D8%B1%D9%88-%D8%AF%D9%8A%D8%A7%D8%A8-%D9%8A%D8%B1%D8%AA%D8%AF%D9%8A-%D8%AB%D9%8A%D8%A7%D8%A8%D9%87-%D9%81%D9%8A-%D8%BA%D8%B1%D9%81%D8%AA/jiangnantiyu.live, Stored debug messages: 2024-01-04 12:23:59 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /watan/2023/09/18/عشيق-ابنة-عمرو-دياب-يرتدي-ثيابه-في-غرفت/jiangnantiyu.live 2024-01-04 12:23:59 PST (DEBUG): Processing 404 for URL: /watan/2023/09/18/عشيق-ابنة-عمرو-دياب-يرتدي-ثيابه-في-غرفت/jiangnantiyu.live | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.18jnvgepktf8, REQUEST_URI: /watan/2023/09/18/عشيق-ابنة-عمرو-دياب-يرتدي-ثيابه-في-غرفت/jiangnantiyu.live 2024-01-04 12:24:00 PST (DEBUG): No posts or pages matching slug: jiangnantiyu.live 2024-01-04 12:25:46 PST (DEBUG): Slow query (106.16 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(17, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(17) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('jiangnantiyu li...', 'watan 2023 09 1...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'jiangnantiyu li...', 'watan 2023 09 1...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('watan/2023/09/1...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('watan/2023/09/1...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/06/17/%D8%BA%D8%A7%D8%AF%D8%A9-%D8%B9%D8%A8%D8%AF-%D8%A7%D9%84%D8%B1%D8%A7%D8%B2%D9%82-%D8%AA%D8%AD%D8%A7%D9%88%D9%84-%D8%AD%D8%B1%D9%82-%D9%86%D9%81%D8%B3%D9%87%D8%A7/tbtiyu188.org, Stored debug messages: 2024-01-04 12:20:24 PST (DEBUG): Processing 404 for URL: /2016/06/17/غادة-عبد-الرازق-تحاول-حرق-نفسها/tbtiyu188.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.39.655sdtcr61k0, REQUEST_URI: /2016/06/17/غادة-عبد-الرازق-تحاول-حرق-نفسها/tbtiyu188.org 2024-01-04 12:20:25 PST (DEBUG): No posts or pages matching slug: tbtiyu188.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (321.1 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('tbtiyu188 org', '2016 06 17 \xD8\xBA\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'tbtiyu188 org', '2016 06 17 \xD8\xBA\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/06/17/\xD8\xBA\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/06/17/\xD8\xBA\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/02/24/%D8%AF%D9%88%D8%B1%D9%8A-%D8%A3%D8%A8%D8%B7%D8%A7%D9%84-%D8%A3%D9%81%D8%B1%D9%8A%D9%82%D9%8A%D8%A7-2023-%D8%A7%D9%84%D9%88%D8%AF%D8%A7%D8%AF-%D9%88%D8%A7%D9%84%D9%87%D9%84%D8%A7%D9%84-%D9%8A%D9%81/agzr188.com, Stored debug messages: 2024-01-04 12:18:09 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 for URL: /2023/02/24/دوري-أبطال-أفريقيا-2023-الوداد-والهلال-يف/agzr188.com 2024-01-04 12:18:09 PST (DEBUG): Processing 404 for URL: /2023/02/24/دوري-أبطال-أفريقيا-2023-الوداد-والهلال-يف/agzr188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0, REMOTE_ADDR: 95.108.213.50k20f8bjf20, REQUEST_URI: /2023/02/24/دوري-أبطال-أفريقيا-2023-الوداد-والهلال-يف/agzr188.com 2024-01-04 12:18:10 PST (DEBUG): No posts or pages matching slug: agzr188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (456.24 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzr188 com', '2023 02 24 \xD8\xAF\xD9\x88...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzr188 com', '2023 02 24 \xD8\xAF\xD9\x88...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/02/24/\xD8\xAF\xD9\x88...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/02/24/\xD8\xAF\xD9\x88...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 8), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/02/24/%D8%A7%D8%B9%D8%AA%D9%82%D8%A7%D9%84-%D8%B1%D8%B4%D9%8A%D8%AF-%D9%86%D9%83%D8%A7%D8%B2-%D9%85%D9%86%D8%A7%D9%81%D8%B3-%D8%A8%D9%88%D8%AA%D9%81%D9%84%D9%8A%D9%82%D8%A9-%D9%81%D9%8A-%D8%A7%D9%86%D8%AA/pmzr.org, Stored debug messages: 2024-01-04 12:23:14 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /2019/02/24/اعتقال-رشيد-نكاز-منافس-بوتفليقة-في-انت/pmzr.org 2024-01-04 12:23:14 PST (DEBUG): Processing 404 for URL: /2019/02/24/اعتقال-رشيد-نكاز-منافس-بوتفليقة-في-انت/pmzr.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 213.180.203.o5fgcbjeda00, REQUEST_URI: /2019/02/24/اعتقال-رشيد-نكاز-منافس-بوتفليقة-في-انت/pmzr.org 2024-01-04 12:23:15 PST (DEBUG): No posts or pages matching slug: pmzr.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (151.33 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(8, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(8) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pmzr org', '2019 02 24 \xD8\xA7\xD8\xB9...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pmzr org', '2019 02 24 \xD8\xA7\xD8\xB9...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/02/24/\xD8\xA7\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/02/24/\xD8\xA7\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/05/02/%D8%AA%D9%88%D9%83%D9%84-%D9%83%D8%B1%D9%85%D8%A7%D9%86-%D9%84%D9%80-%D8%A7%D9%84%D8%B3%D9%88%D8%AF%D8%A7%D9%86%D9%8A%D9%8A%D9%86-%D8%A3%D8%B3%D9%82%D8%B7%D9%88%D8%A7-%D8%AD%D9%85%D9%8A%D8%AF%D8%AA/tbtiyu188.com, Stored debug messages: 2024-01-04 12:21:39 PST (DEBUG): Processing 404 for URL: /2019/05/02/توكل-كرمان-لـ-السودانيين-أسقطوا-حميدت/tbtiyu188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.56.679mbr07le50, REQUEST_URI: /2019/05/02/توكل-كرمان-لـ-السودانيين-أسقطوا-حميدت/tbtiyu188.com 2024-01-04 12:21:40 PST (DEBUG): No posts or pages matching slug: tbtiyu188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (245.7 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('tbtiyu188 com', '2019 05 02 \xD8\xAA\xD9\x88...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'tbtiyu188 com', '2019 05 02 \xD8\xAA\xD9\x88...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/05/02/\xD8\xAA\xD9\x88...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/05/02/\xD8\xAA\xD9\x88...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/06/21/%D8%A7%D9%84%D8%B4%D9%8A%D8%AE-%D8%AA%D9%85%D9%8A%D9%85-%D8%A8%D9%86-%D8%AD%D9%85%D8%AF-%D9%8A%D8%B7%D9%84%D9%82-3-%D8%AA%D8%AD%D8%B0%D9%8A%D8%B1%D8%A7%D8%AA-%D9%81%D9%8A-%D9%85%D9%86%D8%AA%D8%AF/bdtiyu168.com, Stored debug messages: 2024-01-04 12:21:50 PST (DEBUG): Processing 404 for URL: /2022/06/21/الشيخ-تميم-بن-حمد-يطلق-3-تحذيرات-في-منتد/bdtiyu168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.39.5l7ct3qqlp20, REQUEST_URI: /2022/06/21/الشيخ-تميم-بن-حمد-يطلق-3-تحذيرات-في-منتد/bdtiyu168.com 2024-01-04 12:21:50 PST (DEBUG): No posts or pages matching slug: bdtiyu168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (235.68 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('bdtiyu168 com', '2022 06 21 \xD8\xA7\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'bdtiyu168 com', '2022 06 21 \xD8\xA7\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/06/21/\xD8\xA7\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/06/21/\xD8\xA7\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/11/29/%D9%85%D9%86-%D9%87%D9%88-%D9%87%D8%AF%D8%A7%D9%81-%D9%83%D8%A3%D8%B3-%D8%A7%D9%84%D8%B9%D8%A7%D9%84%D9%85-%D9%82%D8%B7%D8%B1-2022%D8%9F-%D8%AC%D8%AF%D9%88%D9%84-%D8%A7%D9%84%D8%AA%D8%B1%D8%AA/kaiyun.work, Stored debug messages: 2024-01-04 12:20:30 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/11/29/من-هو-هداف-كأس-العالم-قطر-2022؟-جدول-الترت/kaiyun.work 2024-01-04 12:20:30 PST (DEBUG): Processing 404 for URL: /2022/11/29/من-هو-هداف-كأس-العالم-قطر-2022؟-جدول-الترت/kaiyun.work | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2022/11/29/من-هو-هداف-كأس-العالم-قطر-2022؟-جدول-الترت/kaiyun.work 2024-01-04 12:20:31 PST (DEBUG): No posts or pages matching slug: kaiyun.work 2024-01-04 12:25:46 PST (DEBUG): Slow query (314.77 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaiyun work', '2022 11 29 \xD9\x85\xD9\x86...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaiyun work', '2022 11 29 \xD9\x85\xD9\x86...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/11/29/\xD9\x85\xD9\x86...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/11/29/\xD9\x85\xD9\x86...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/03/14/%D9%81%D9%8A%D8%AF%D9%8A%D9%88-%D8%B7%D9%81%D9%84-%D9%8A%D8%AA%D8%AD%D8%B1%D8%B4-%D8%A8%D8%B2%D9%85%D9%8A%D9%84%D8%AA%D9%87-%D9%88%D9%88%D8%A7%D9%84%D8%AF%D9%87-%D9%84%D9%88%D9%84%D9%8A%D8%A9-%D8%A3/luyutiyu.com, Stored debug messages: 2024-01-04 12:18:48 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2017/03/14/فيديو-طفل-يتحرش-بزميلته-ووالده-لولية-أ/luyutiyu.com 2024-01-04 12:18:48 PST (DEBUG): Processing 404 for URL: /2017/03/14/فيديو-طفل-يتحرش-بزميلته-ووالده-لولية-أ/luyutiyu.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2017/03/14/فيديو-طفل-يتحرش-بزميلته-ووالده-لولية-أ/luyutiyu.com 2024-01-04 12:18:49 PST (DEBUG): No posts or pages matching slug: luyutiyu.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (417.27 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('luyutiyu com', '2017 03 14 \xD9\x81\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'luyutiyu com', '2017 03 14 \xD9\x81\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/03/14/\xD9\x81\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/03/14/\xD9\x81\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2015/12/13/%D8%A7%D9%84%D8%B3%D9%8A%D8%B3%D9%8A-%D9%8A%D9%86%D9%81%D9%82-6-%D9%85%D9%84%D9%8A%D8%A7%D8%B1%D8%A7%D8%AA-%D8%AC%D9%86%D9%8A%D9%87-%D9%85%D9%86-%D8%A7%D9%84%D8%B1%D8%B2-%D8%A7%D9%84%D8%AE%D9%84/aiyouxi168.net, Stored debug messages: 2024-01-04 12:19:08 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2015/12/13/السيسي-ينفق-6-مليارات-جنيه-من-الرز-الخل/aiyouxi168.net 2024-01-04 12:19:08 PST (DEBUG): Processing 404 for URL: /2015/12/13/السيسي-ينفق-6-مليارات-جنيه-من-الرز-الخل/aiyouxi168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2015/12/13/السيسي-ينفق-6-مليارات-جنيه-من-الرز-الخل/aiyouxi168.net 2024-01-04 12:19:09 PST (DEBUG): No posts or pages matching slug: aiyouxi168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (397.27 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('aiyouxi168 net', '2015 12 13 \xD8\xA7\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'aiyouxi168 net', '2015 12 13 \xD8\xA7\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2015/12/13/\xD8\xA7\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2015/12/13/\xD8\xA7\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 16), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/03/23/%D8%B4%D8%A7%D9%87%D8%AF-%D8%B2%D9%88%D8%AC-%D9%8A%D8%AC%D9%84%D8%AF-%D8%B2%D9%88%D8%AC%D8%AA%D9%87-100-%D9%85%D8%B1%D9%91%D8%A9-%D8%A3%D9%85%D8%A7%D9%85-%D8%B3%D9%83%D8%A7%D9%86-%D9%82%D8%B1%D9%8A/ag-baccarat.live, Stored debug messages: 2024-01-04 12:17:48 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/03/23/شاهد-زوج-يجلد-زوجته-100-مرّة-أمام-سكان-قري/ag-baccarat.live 2024-01-04 12:17:48 PST (DEBUG): Processing 404 for URL: /2018/03/23/شاهد-زوج-يجلد-زوجته-100-مرّة-أمام-سكان-قري/ag-baccarat.live | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4svnogt3u090, REQUEST_URI: /2018/03/23/شاهد-زوج-يجلد-زوجته-100-مرّة-أمام-سكان-قري/ag-baccarat.live 2024-01-04 12:17:49 PST (DEBUG): No posts or pages matching slug: ag-baccarat.live 2024-01-04 12:25:46 PST (DEBUG): Slow query (477.18 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(16, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(16) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('ag baccarat liv...', '2018 03 23 \xD8\xB4\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'ag baccarat liv...', '2018 03 23 \xD8\xB4\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/03/23/\xD8\xB4\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/03/23/\xD8\xB4\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/07/18/%D8%B2%D9%8A%D9%84%D9%8A%D9%86%D8%B3%D9%83%D9%8A-%D8%B9%D8%A7%D8%B1%D9%8A%D8%A7-%D8%B5%D9%88%D8%B1-%D8%B3%D8%B1%D8%A8%D9%87%D8%A7-%D8%B5%D8%AF%D9%8A%D9%82-%D8%B3%D8%A7%D8%A8%D9%82-%D8%A7%D9%86%D9%82/leyutiyu.co, Stored debug messages: 2024-01-04 12:21:26 PST (DEBUG): Processing 404 for URL: /2023/07/18/زيلينسكي-عاريا-صور-سربها-صديق-سابق-انق/leyutiyu.co | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.116.51q33egfo2e0, REQUEST_URI: /2023/07/18/زيلينسكي-عاريا-صور-سربها-صديق-سابق-انق/leyutiyu.co 2024-01-04 12:21:27 PST (DEBUG): No posts or pages matching slug: leyutiyu.co 2024-01-04 12:25:46 PST (DEBUG): Slow query (259.05 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('leyutiyu co', '2023 07 18 \xD8\xB2\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'leyutiyu co', '2023 07 18 \xD8\xB2\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/07/18/\xD8\xB2\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/07/18/\xD8\xB2\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/06/07/%D8%A7%D8%BA%D8%AA%D9%8A%D8%A7%D9%84-%D8%B6%D8%A7%D8%A8%D8%B7-%D8%B9%D8%B1%D8%A7%D9%82%D9%8A-%D9%81%D9%8A-%D9%85%D9%86%D8%B5%D8%A8-%D8%AD%D8%B3%D8%A7%D8%B3-%D9%81%D9%85%D8%A7-%D8%A7%D9%84%D8%B3%D8%B1/wanboty188.com, Stored debug messages: 2024-01-04 12:18:38 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/06/07/اغتيال-ضابط-عراقي-في-منصب-حساس-فما-السر/wanboty188.com 2024-01-04 12:18:38 PST (DEBUG): Processing 404 for URL: /2021/06/07/اغتيال-ضابط-عراقي-في-منصب-حساس-فما-السر/wanboty188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2021/06/07/اغتيال-ضابط-عراقي-في-منصب-حساس-فما-السر/wanboty188.com 2024-01-04 12:18:39 PST (DEBUG): No posts or pages matching slug: wanboty188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (427.22 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('wanboty188 com', '2021 06 07 \xD8\xA7\xD8\xBA...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'wanboty188 com', '2021 06 07 \xD8\xA7\xD8\xBA...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/06/07/\xD8\xA7\xD8\xBA...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/06/07/\xD8\xA7\xD8\xBA...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 57), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://khoir-arabi.blogspot.com/2021/05/blog-post_419.html?m=1, Requested URL: /wp-content/uploads/2020/06/%D8%A7%D9%84%D8%A3%D9%85%D9%8A%D8%B1-%D8%B3%D8%B9%D9%88%D8%AF-%D8%A8%D9%86-%D8%B9%D8%A8%D8%AF-%D8%A7%D9%84%D9%84%D9%87-%D8%A8%D9%86-%D9%81%D9%8A%D8%B5%D9%84-%D8%A8%D9%86-%D8%B9%D8%A8%D8%AF-%D8%A7%D9%84%D8%B9%D8%B2%D9%8A%D8%B2-%D8%A2%D9%84-%D8%B3%D8%B9%D9%88%D8%AF.jpg, Stored debug messages: 2024-01-04 12:17:48 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2020/06/الأمير-سعود-بن-عبد-الله-بن-فيصل-بن-عبد-العزيز-آل-سعود.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; Bytespider; spider-feedback@bytedance.com) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.0.0 Safari/537.36, REMOTE_ADDR: 47.128.20.7as9unfih0r0, REQUEST_URI: /wp-content/uploads/2020/06/الأمير-سعود-بن-عبد-الله-بن-فيصل-بن-عبد-العزيز-آل-سعود.jpg 2024-01-04 12:17:49 PST (DEBUG): No posts or pages matching slug: الأمير-سعود-بن-عبد-الله-بن-فيصل-بن-عبد-العزيز-آل-سعود.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (477.21 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(57, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(57) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xA7\xD9\x84\xD8\xA3\xD9\x85\xD9\x8A\xD8\xB1 \xD8\xB3...', 'wp content uplo...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xA7\xD9\x84\xD8\xA3\xD9\x85\xD9\x8A\xD8\xB1 \xD8\xB3...', 'wp content uplo...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/09/19/%D8%B4%D9%82%D9%8A%D9%82%D8%A9-%D8%A7%D9%84%D8%B4%D9%8A%D8%AE-%D8%B3%D9%84%D8%B7%D8%A7%D9%86-%D8%A8%D9%86-%D8%B3%D8%AD%D9%8A%D9%85-%D8%A2%D9%84-%D8%AB%D8%A7%D9%86%D9%8A-%D8%A3%D9%85%D9%8A%D8%B1%D9%86/pgdz168.net, Stored debug messages: 2024-01-04 12:21:13 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2017/09/19/شقيقة-الشيخ-سلطان-بن-سحيم-آل-ثاني-أميرن/pgdz168.net 2024-01-04 12:21:13 PST (DEBUG): Processing 404 for URL: /2017/09/19/شقيقة-الشيخ-سلطان-بن-سحيم-آل-ثاني-أميرن/pgdz168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2017/09/19/شقيقة-الشيخ-سلطان-بن-سحيم-آل-ثاني-أميرن/pgdz168.net 2024-01-04 12:21:13 PST (DEBUG): No posts or pages matching slug: pgdz168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (272.55 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pgdz168 net', '2017 09 19 \xD8\xB4\xD9\x82...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pgdz168 net', '2017 09 19 \xD8\xB4\xD9\x82...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/09/19/\xD8\xB4\xD9\x82...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/09/19/\xD8\xB4\xD9\x82...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/11/15/%D8%A7%D8%A8%D9%86-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D9%8A%D8%AD%D8%B1%D9%85-4-%D9%85%D9%84%D8%A7%D9%8A%D9%8A%D9%86-%D9%81%D9%84%D8%B3%D8%B7%D9%8A%D9%86%D9%8A-%D9%85%D9%86-%D8%A3%D8%AF%D8%A7%D8%A1/pgdz168.net, Stored debug messages: 2024-01-04 12:18:11 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/11/15/ابن-سلمان-يحرم-4-ملايين-فلسطيني-من-أداء/pgdz168.net 2024-01-04 12:18:11 PST (DEBUG): Processing 404 for URL: /2018/11/15/ابن-سلمان-يحرم-4-ملايين-فلسطيني-من-أداء/pgdz168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4svnogt3u090, REQUEST_URI: /2018/11/15/ابن-سلمان-يحرم-4-ملايين-فلسطيني-من-أداء/pgdz168.net 2024-01-04 12:18:12 PST (DEBUG): No posts or pages matching slug: pgdz168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (454.43 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pgdz168 net', '2018 11 15 \xD8\xA7\xD8\xA8...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pgdz168 net', '2018 11 15 \xD8\xA7\xD8\xA8...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/11/15/\xD8\xA7\xD8\xA8...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/11/15/\xD8\xA7\xD8\xA8...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/09/11/%D8%A5%D8%A8%D8%B1%D8%A7%D9%87%D9%8A%D9%85%D9%88%D9%81%D9%8A%D8%AA%D8%B4-%D9%8A%D8%B4%D9%86-%D9%87%D8%AC%D9%88%D9%85%D9%8B%D8%A7-%D8%B9%D9%84%D9%89-%D8%B1%D9%88%D9%86%D8%A7%D9%84%D8%AF%D9%88-%D9%88/yxty168.org%22, Stored debug messages: 2024-01-04 12:19:38 PST (DEBUG): Processing 404 for URL: /2021/09/11/إبراهيموفيتش-يشن-هجومًا-على-رونالدو-و/yxty168.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.47.3oqo6ikm7a20, REQUEST_URI: /2021/09/11/إبراهيموفيتش-يشن-هجومًا-على-رونالدو-و/yxty168.org" 2024-01-04 12:19:39 PST (DEBUG): No posts or pages matching slug: yxty168.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (367.09 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('yxty168 org', '2021 09 11 \xD8\xA5\xD8\xA8...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'yxty168 org', '2021 09 11 \xD8\xA5\xD8\xA8...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/09/11/\xD8\xA5\xD8\xA8...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/09/11/\xD8\xA5\xD8\xA8...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/09/04/%D8%B3%D9%8A%D8%A7%D8%B3%D9%8A-%D9%83%D9%88%D9%8A%D8%AA%D9%8A-%D8%A7%D9%86%D8%AA%D8%B8%D8%B1%D9%88%D8%A7-%D8%A7%D9%84%D8%A7%D8%B4%D9%87%D8%B1-%D8%A7%D9%84%D9%82%D8%A7%D8%AF%D9%85%D8%A9-%D9%85%D9%88/aiyouxi168.net, Stored debug messages: 2024-01-04 12:22:11 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/09/04/سياسي-كويتي-انتظروا-الاشهر-القادمة-مو/aiyouxi168.net 2024-01-04 12:22:11 PST (DEBUG): Processing 404 for URL: /2018/09/04/سياسي-كويتي-انتظروا-الاشهر-القادمة-مو/aiyouxi168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2018/09/04/سياسي-كويتي-انتظروا-الاشهر-القادمة-مو/aiyouxi168.net 2024-01-04 12:22:12 PST (DEBUG): No posts or pages matching slug: aiyouxi168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (213.67 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('aiyouxi168 net', '2018 09 04 \xD8\xB3\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'aiyouxi168 net', '2018 09 04 \xD8\xB3\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/09/04/\xD8\xB3\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/09/04/\xD8\xB3\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/07/08/%D8%AA%D8%B7%D9%88%D9%91%D8%B1-%D9%85%D8%B2%D8%B9%D8%AC-%D9%84%D8%AF%D9%88%D9%84-%D8%A7%D9%84%D8%AD%D8%B5%D8%A7%D8%B1-%D8%A8%D8%B4%D8%B1%D9%89-%D8%AE%D9%8A%D8%B1-%D8%B9%D8%A7%D9%87%D9%84-%D8%A7/kaifayl.net, Stored debug messages: 2024-01-04 12:20:59 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2019/07/08/تطوّر-مزعج-لدول-الحصار-بشرى-خير-عاهل-ا/kaifayl.net 2024-01-04 12:20:59 PST (DEBUG): Processing 404 for URL: /2019/07/08/تطوّر-مزعج-لدول-الحصار-بشرى-خير-عاهل-ا/kaifayl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /2019/07/08/تطوّر-مزعج-لدول-الحصار-بشرى-خير-عاهل-ا/kaifayl.net 2024-01-04 12:21:00 PST (DEBUG): No posts or pages matching slug: kaifayl.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (286.21 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaifayl net', '2019 07 08 \xD8\xAA\xD8\xB7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaifayl net', '2019 07 08 \xD8\xAA\xD8\xB7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/07/08/\xD8\xAA\xD8\xB7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/07/08/\xD8\xAA\xD8\xB7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/01/31/%D9%85%D8%AD%D9%83%D9%85%D8%A9-%D9%83%D9%88%D9%8A%D8%AA%D9%8A%D8%A9-%D8%AA%D8%B5%D8%AF%D8%B1-%D8%AD%D9%83%D9%85%D9%87%D8%A7-%D8%A7%D9%84%D9%86%D9%87%D8%A7%D8%A6%D9%8A-%D8%A8%D8%AD%D9%82-%D8%B3%D8%B9/imty168.com, Stored debug messages: 2024-01-04 12:23:15 PST (DEBUG): Processing 404 for URL: /2021/01/31/محكمة-كويتية-تصدر-حكمها-النهائي-بحق-سع/imty168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html), REMOTE_ADDR: 185.191.171.352auk7meal0, REQUEST_URI: /2021/01/31/محكمة-كويتية-تصدر-حكمها-النهائي-بحق-سع/imty168.com 2024-01-04 12:23:16 PST (DEBUG): No posts or pages matching slug: imty168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (149.85 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('imty168 com', '2021 01 31 \xD9\x85\xD8\xAD...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'imty168 com', '2021 01 31 \xD9\x85\xD8\xAD...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/01/31/\xD9\x85\xD8\xAD...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/01/31/\xD9\x85\xD8\xAD...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 8), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/05/05/%D9%85%D9%81%D8%AA%D9%8A-%D8%A7%D9%84%D8%A3%D8%B3%D8%AF-%D9%8A%D8%AF%D9%91%D8%B9%D9%8A-%D8%A7%D9%84%D8%A3%D8%AA%D8%B1%D8%A7%D9%83-%D8%A7%D9%84%D8%B9%D8%AB%D9%85%D8%A7%D9%86%D9%8A%D9%8A%D9%86/imty.org, Stored debug messages: 2024-01-04 12:22:02 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/05/05/مفتي-الأسد-يدّعي-الأتراك-العثمانيين/imty.org 2024-01-04 12:22:02 PST (DEBUG): Processing 404 for URL: /2016/05/05/مفتي-الأسد-يدّعي-الأتراك-العثمانيين/imty.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /2016/05/05/مفتي-الأسد-يدّعي-الأتراك-العثمانيين/imty.org 2024-01-04 12:22:03 PST (DEBUG): No posts or pages matching slug: imty.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (222.76 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(8, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(8) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('imty org', '2016 05 05 \xD9\x85\xD9\x81...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'imty org', '2016 05 05 \xD9\x85\xD9\x81...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/05/05/\xD9\x85\xD9\x81...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/05/05/\xD9\x85\xD9\x81...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 16), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/05/16/%D9%85%D8%A7-%D9%82%D8%B5%D8%A9-%D8%A7%D9%84%D8%A7%D8%AD%D8%AA%D8%B6%D8%A7%D9%86-%D8%A8%D8%B4%D8%B1%D8%B7-%D8%A7%D9%84%D8%B1%D8%B6%D8%A7%D8%B9%D8%A9-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A%D8%A9/ag-baccarat.live, Stored debug messages: 2024-01-04 12:21:16 PST (DEBUG): Processing 404 for URL: /2021/05/16/ما-قصة-الاحتضان-بشرط-الرضاعة-السعودية/ag-baccarat.live | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html), REMOTE_ADDR: 185.191.171.4ruce7vs32i0, REQUEST_URI: /2021/05/16/ما-قصة-الاحتضان-بشرط-الرضاعة-السعودية/ag-baccarat.live 2024-01-04 12:21:17 PST (DEBUG): No posts or pages matching slug: ag-baccarat.live 2024-01-04 12:25:46 PST (DEBUG): Slow query (268.91 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(16, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(16) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('ag baccarat liv...', '2021 05 16 \xD9\x85\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'ag baccarat liv...', '2021 05 16 \xD9\x85\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/05/16/\xD9\x85\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/05/16/\xD9\x85\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/01/31/%D9%85%D8%AD%D9%83%D9%85%D8%A9-%D9%83%D9%88%D9%8A%D8%AA%D9%8A%D8%A9-%D8%AA%D8%B5%D8%AF%D8%B1-%D8%AD%D9%83%D9%85%D9%87%D8%A7-%D8%A7%D9%84%D9%86%D9%87%D8%A7%D8%A6%D9%8A-%D8%A8%D8%AD%D9%82-%D8%B3%D8%B9/imty168.com, Stored debug messages: 2024-01-04 12:24:05 PST (DEBUG): Processing 404 for URL: /2021/01/31/محكمة-كويتية-تصدر-حكمها-النهائي-بحق-سع/imty168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html), REMOTE_ADDR: 185.191.171.352auk7meal0, REQUEST_URI: /2021/01/31/محكمة-كويتية-تصدر-حكمها-النهائي-بحق-سع/imty168.com 2024-01-04 12:24:06 PST (DEBUG): No posts or pages matching slug: imty168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (100.07 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('imty168 com', '2021 01 31 \xD9\x85\xD8\xAD...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'imty168 com', '2021 01 31 \xD9\x85\xD8\xAD...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/01/31/\xD9\x85\xD8\xAD...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/01/31/\xD9\x85\xD8\xAD...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/02/24/%D8%AF%D9%88%D8%B1%D9%8A-%D8%A3%D8%A8%D8%B7%D8%A7%D9%84-%D8%A3%D9%81%D8%B1%D9%8A%D9%82%D9%8A%D8%A7-2023-%D8%A7%D9%84%D9%88%D8%AF%D8%A7%D8%AF-%D9%88%D8%A7%D9%84%D9%87%D9%84%D8%A7%D9%84-%D9%8A%D9%81/agzr188.com, Stored debug messages: 2024-01-04 12:19:09 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 for URL: /2023/02/24/دوري-أبطال-أفريقيا-2023-الوداد-والهلال-يف/agzr188.com 2024-01-04 12:19:09 PST (DEBUG): Processing 404 for URL: /2023/02/24/دوري-أبطال-أفريقيا-2023-الوداد-والهلال-يف/agzr188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0, REMOTE_ADDR: 87.250.224.4r0j8l512uo0, REQUEST_URI: /2023/02/24/دوري-أبطال-أفريقيا-2023-الوداد-والهلال-يف/agzr188.com 2024-01-04 12:19:10 PST (DEBUG): No posts or pages matching slug: agzr188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (396.51 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzr188 com', '2023 02 24 \xD8\xAF\xD9\x88...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzr188 com', '2023 02 24 \xD8\xAF\xD9\x88...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/02/24/\xD8\xAF\xD9\x88...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/02/24/\xD8\xAF\xD9\x88...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/02/01/%D8%A7%D8%A8%D9%86%D8%A9-%D8%A7%D9%84%D8%B9%D8%A7%D9%87%D9%84-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D8%A7%D9%84%D9%88%D8%AD%D9%8A%D8%AF%D8%A9-%D8%AD%D8%B5%D8%A9-%D8%A8%D9%86%D8%AA-%D8%B3%D9%84/bandaotiyu.ai, Stored debug messages: 2024-01-04 12:17:44 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /2023/02/01/ابنة-العاهل-السعودي-الوحيدة-حصة-بنت-سل/bandaotiyu.ai 2024-01-04 12:17:44 PST (DEBUG): Processing 404 for URL: /2023/02/01/ابنة-العاهل-السعودي-الوحيدة-حصة-بنت-سل/bandaotiyu.ai | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /2023/02/01/ابنة-العاهل-السعودي-الوحيدة-حصة-بنت-سل/bandaotiyu.ai 2024-01-04 12:17:45 PST (DEBUG): No posts or pages matching slug: bandaotiyu.ai 2024-01-04 12:25:46 PST (DEBUG): Slow query (481.16 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('bandaotiyu ai', '2023 02 01 \xD8\xA7\xD8\xA8...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'bandaotiyu ai', '2023 02 01 \xD8\xA7\xD8\xA8...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/02/01/\xD8\xA7\xD8\xA8...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/02/01/\xD8\xA7\xD8\xA8...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 22), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/2023/11/06/%D8%A5%D8%B5%D8%A7%D8%A8%D8%A9-%D8%B4%D8%B1%D8%B7%D9%8A%D9%8A%D9%86-%D9%81%D9%8A-%D8%B9%D9%85%D9%84%D9%8A%D8%A9-%D8%B7%D8%B9%D9%86-%D9%88%D8%A5%D8%B7%D9%84%D8%A7%D9%82-%D9%86%D8%A7%D8%B1-%D8%A8%D8%A7/, Requested URL: /superpwa-manifest.json, Stored debug messages: 2024-01-04 12:22:40 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /superpwa-manifest.json 2024-01-04 12:22:41 PST (DEBUG): Processing 404 for URL: /superpwa-manifest.json | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.71 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 66.249.69.5td1ntcg5uj0, REQUEST_URI: /superpwa-manifest.json 2024-01-04 12:22:41 PST (DEBUG): No posts or pages matching slug: superpwa-manifest.json 2024-01-04 12:25:46 PST (DEBUG): Slow query (184.65 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(22, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(22) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('superpwa manife...', '', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'superpwa manife...', '', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('superpwa-manife...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('superpwa-manife...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 54), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2018/06/2bb33e44-93f0-4e61-94e0-07d7268a9bcf_16x9_1200x676.jpg, Stored debug messages: 2024-01-04 12:22:47 PST (DEBUG): Ignoring user agent (process ok): facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) for URL: /wp-content/uploads/2018/06/2bb33e44-93f0-4e61-94e0-07d7268a9bcf_16x9_1200x676.jpg 2024-01-04 12:22:47 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2018/06/2bb33e44-93f0-4e61-94e0-07d7268a9bcf_16x9_1200x676.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php), REMOTE_ADDR: 2a03:2880:31ff:co5qrjg7hmq0, REQUEST_URI: /wp-content/uploads/2018/06/2bb33e44-93f0-4e61-94e0-07d7268a9bcf_16x9_1200x676.jpg 2024-01-04 12:22:48 PST (DEBUG): No posts or pages matching slug: 2bb33e44-93f0-4e61-94e0-07d7268a9bcf_16x9_1200x676.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (177.82 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(54, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(54) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('2bb33e44 93f0 4...', 'wp content uplo...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '2bb33e44 93f0 4...', 'wp content uplo...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 4), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /latest/tag/%D9%85%D8%AD%D9%85%D8%AF-%D8%A7%D9%84%D9%81%D8%B2%D8%A7%D8%B1%D9%8A/feed/, Stored debug messages: 2024-01-04 12:21:10 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /latest/tag/محمد-الفزاري/feed/ 2024-01-04 12:21:10 PST (DEBUG): Processing 404 for URL: /latest/tag/محمد-الفزاري/feed/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 66.249.77.3lfd85pv9kp0, REQUEST_URI: /latest/tag/محمد-الفزاري/feed/ 2024-01-04 12:21:11 PST (DEBUG): No posts or pages matching slug: feed 2024-01-04 12:25:46 PST (DEBUG): Slow query (275.12 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(4, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(4) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('feed', 'latest tag \xD9\x85\xD8\xAD...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'feed', 'latest tag \xD9\x85\xD8\xAD...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('latest/tag/\xD9\x85\xD8\xAD...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('latest/tag/\xD9\x85\xD8\xAD...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/05/24/%D9%86%D8%A7%D8%AF%D9%8A%D9%86-%D9%86%D8%AC%D9%8A%D9%85-%D9%85%D8%B9-%D8%B7%D9%84%D9%8A%D9%82%D9%87%D8%A7-%D9%88%D8%A3%D8%A8%D9%86%D8%A7%D8%A1%D9%87%D9%85%D8%A7-%D9%81%D9%8A-%D9%85%D9%86%D8%A7%D8%B3/bdtiyu168.net, Stored debug messages: 2024-01-04 12:19:38 PST (DEBUG): Processing 404 for URL: /2022/05/24/نادين-نجيم-مع-طليقها-وأبناءهما-في-مناس/bdtiyu168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.47.3j4u54l1km20, REQUEST_URI: /2022/05/24/نادين-نجيم-مع-طليقها-وأبناءهما-في-مناس/bdtiyu168.net 2024-01-04 12:19:39 PST (DEBUG): No posts or pages matching slug: bdtiyu168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (367.09 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('bdtiyu168 net', '2022 05 24 \xD9\x86\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'bdtiyu168 net', '2022 05 24 \xD9\x86\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/05/24/\xD9\x86\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/05/24/\xD9\x86\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/05/28/%D8%A5%D8%B3%D8%B1%D8%A7%D8%A6%D9%8A%D9%84-%D8%AA%D8%BA%D8%A7%D8%B2%D9%84-%D8%A7%D8%A8%D9%86-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D9%88%D8%AA%D8%B1%D8%AF-%D9%84%D9%87-%D8%A7%D9%84%D8%AC%D9%85%D9%8A%D9%84/kaifayl.net, Stored debug messages: 2024-01-04 12:21:25 PST (DEBUG): Processing 404 for URL: /2020/05/28/إسرائيل-تغازل-ابن-سلمان-وترد-له-الجميل/kaifayl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.110.1orcter4gcv0, REQUEST_URI: /2020/05/28/إسرائيل-تغازل-ابن-سلمان-وترد-له-الجميل/kaifayl.net 2024-01-04 12:21:26 PST (DEBUG): No posts or pages matching slug: kaifayl.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (260.19 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaifayl net', '2020 05 28 \xD8\xA5\xD8\xB3...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaifayl net', '2020 05 28 \xD8\xA5\xD8\xB3...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/05/28/\xD8\xA5\xD8\xB3...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/05/28/\xD8\xA5\xD8\xB3...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/04/20/%D8%AA%D9%82%D8%B3%D9%8A%D9%85-%D8%A7%D9%84%D8%A3%D9%82%D8%B5%D9%89-%D9%87%D9%84-%D9%8A%D8%AA%D9%83%D8%B1%D8%B1-%D8%B3%D9%8A%D9%86%D8%A7%D8%B1%D9%8A%D9%88-%D8%A7%D9%84%D8%AD%D8%B1%D9%85-%D8%A7/pgdz168.com, Stored debug messages: 2024-01-04 12:21:31 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/04/20/تقسيم-الأقصى-هل-يتكرر-سيناريو-الحرم-ا/pgdz168.com 2024-01-04 12:21:31 PST (DEBUG): Processing 404 for URL: /2022/04/20/تقسيم-الأقصى-هل-يتكرر-سيناريو-الحرم-ا/pgdz168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2022/04/20/تقسيم-الأقصى-هل-يتكرر-سيناريو-الحرم-ا/pgdz168.com 2024-01-04 12:21:32 PST (DEBUG): No posts or pages matching slug: pgdz168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (254.37 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pgdz168 com', '2022 04 20 \xD8\xAA\xD9\x82...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pgdz168 com', '2022 04 20 \xD8\xAA\xD9\x82...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/04/20/\xD8\xAA\xD9\x82...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/04/20/\xD8\xAA\xD9\x82...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/04/24/%D9%85%D8%A7%D8%B0%D8%A7-%D9%82%D8%B5%D8%AF-%D8%A8%D8%A7%D8%B3%D9%85-%D9%8A%D9%88%D8%B3%D9%81-%D9%81%D9%8A-%D8%AA%D8%AF%D9%88%D9%8A%D9%86%D8%A9-%D9%85%D8%AE%D8%AA%D8%B5%D8%B1%D8%A9-%D9%83%D8%AA%D8%A8/leyutiy.net, Stored debug messages: 2024-01-04 12:24:26 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/04/24/ماذا-قصد-باسم-يوسف-في-تدوينة-مختصرة-كتب/leyutiy.net 2024-01-04 12:24:26 PST (DEBUG): Processing 404 for URL: /2016/04/24/ماذا-قصد-باسم-يوسف-في-تدوينة-مختصرة-كتب/leyutiy.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /2016/04/24/ماذا-قصد-باسم-يوسف-في-تدوينة-مختصرة-كتب/leyutiy.net 2024-01-04 12:24:27 PST (DEBUG): No posts or pages matching slug: leyutiy.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (79.29 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('leyutiy net', '2016 04 24 \xD9\x85\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'leyutiy net', '2016 04 24 \xD9\x85\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/04/24/\xD9\x85\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/04/24/\xD9\x85\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/12/10/%D8%B4%D8%A7%D9%87%D8%AF-%D9%84%D8%AD%D8%B8%D8%A9-%D8%B7%D8%B9%D9%86-%D8%B4%D8%A7%D8%A8-%D9%81%D9%84%D8%B3%D8%B7%D9%8A%D9%86%D9%8A-%D9%84%D8%AC%D9%86%D8%AF%D9%8A/luyutiyu.com, Stored debug messages: 2024-01-04 12:21:24 PST (DEBUG): Processing 404 for URL: /2017/12/10/شاهد-لحظة-طعن-شاب-فلسطيني-لجندي/luyutiyu.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.41.5l7ct3qqlp20, REQUEST_URI: /2017/12/10/شاهد-لحظة-طعن-شاب-فلسطيني-لجندي/luyutiyu.com 2024-01-04 12:21:25 PST (DEBUG): No posts or pages matching slug: luyutiyu.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (261.34 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('luyutiyu com', '2017 12 10 \xD8\xB4\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'luyutiyu com', '2017 12 10 \xD8\xB4\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/12/10/\xD8\xB4\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/12/10/\xD8\xB4\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/11/29/%D8%AB%D8%A7%D9%85%D8%B1-%D8%A7%D9%84%D8%B3%D8%A8%D9%87%D8%A7%D9%86-%D9%8A%D8%B7%D8%A8%D9%84-%D9%84%D9%80%D8%A7%D8%A8%D9%86-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D8%B3%D8%B1-%D8%A8%D9%86%D8%A7-%D9%86/kaiyun.work, Stored debug messages: 2024-01-04 12:23:47 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/11/29/ثامر-السبهان-يطبل-لـابن-سلمان-سر-بنا-ن/kaiyun.work 2024-01-04 12:23:47 PST (DEBUG): Processing 404 for URL: /2018/11/29/ثامر-السبهان-يطبل-لـابن-سلمان-سر-بنا-ن/kaiyun.work | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.18jnvgepktf8, REQUEST_URI: /2018/11/29/ثامر-السبهان-يطبل-لـابن-سلمان-سر-بنا-ن/kaiyun.work 2024-01-04 12:23:48 PST (DEBUG): No posts or pages matching slug: kaiyun.work 2024-01-04 12:25:46 PST (DEBUG): Slow query (117.71 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaiyun work', '2018 11 29 \xD8\xAB\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaiyun work', '2018 11 29 \xD8\xAB\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/11/29/\xD8\xAB\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/11/29/\xD8\xAB\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/03/29/%D9%88%D9%84%D8%A7-%D9%86%D8%B5-%D9%83%D9%84%D9%85%D8%A9-%D8%A7%D9%84%D9%82%D8%B6%D8%A7%D8%A1-%D8%A7%D9%84%D8%A5%D9%85%D8%A7%D8%B1%D8%A7%D8%AA%D9%8A-%D9%8A%D8%AD%D8%A8%D8%B3-%D8%A8%D9%86-%D8%BA/shaba168.com, Stored debug messages: 2024-01-04 12:22:30 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2017/03/29/ولا-نص-كلمة-القضاء-الإماراتي-يحبس-بن-غ/shaba168.com 2024-01-04 12:22:31 PST (DEBUG): Processing 404 for URL: /2017/03/29/ولا-نص-كلمة-القضاء-الإماراتي-يحبس-بن-غ/shaba168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2017/03/29/ولا-نص-كلمة-القضاء-الإماراتي-يحبس-بن-غ/shaba168.com 2024-01-04 12:22:31 PST (DEBUG): No posts or pages matching slug: shaba168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (194.56 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('shaba168 com', '2017 03 29 \xD9\x88\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'shaba168 com', '2017 03 29 \xD9\x88\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/03/29/\xD9\x88\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/03/29/\xD9\x88\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 22), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /www.watanserb.com/wp-content/uploads/2022/03/%D8%A3%D8%AD%D8%AF-%D9%85%D8%B3%D9%84%D9%85%D9%8A-%D8%A3%D9%88%D9%83%D8%B1%D8%A7%D9%86%D9%8A%D8%A7.jpg, Stored debug messages: 2024-01-04 12:17:42 PST (DEBUG): Processing 404 for URL: /www.watanserb.com/wp-content/uploads/2022/03/أحد-مسلمي-أوكرانيا.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Dalvik/2.1.0 (Linux; U; Android 12; SM-A525F Build/SP1A.210812.016), REMOTE_ADDR: 109.74.192.3ulfhq2p4vvg, REQUEST_URI: /www.watanserb.com/wp-content/uploads/2022/03/أحد-مسلمي-أوكرانيا.jpg 2024-01-04 12:17:43 PST (DEBUG): No posts or pages matching slug: أحد-مسلمي-أوكرانيا.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (483.12 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(22, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(22) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xA3\xD8\xAD\xD8\xAF \xD9\x85\xD8\xB3\xD9\x84\xD9\x85...', 'www watanserb c...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xA3\xD8\xAD\xD8\xAF \xD9\x85\xD8\xB3\xD9\x84\xD9\x85...', 'www watanserb c...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('www.watanserb.c...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('www.watanserb.c...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 54), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2018/06/2bb33e44-93f0-4e61-94e0-07d7268a9bcf_16x9_1200x676.jpg, Stored debug messages: 2024-01-04 12:22:27 PST (DEBUG): Ignoring user agent (process ok): facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) for URL: /wp-content/uploads/2018/06/2bb33e44-93f0-4e61-94e0-07d7268a9bcf_16x9_1200x676.jpg 2024-01-04 12:22:27 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2018/06/2bb33e44-93f0-4e61-94e0-07d7268a9bcf_16x9_1200x676.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php), REMOTE_ADDR: 2a03:2880:23ff:6k3m6dj3o0m0, REQUEST_URI: /wp-content/uploads/2018/06/2bb33e44-93f0-4e61-94e0-07d7268a9bcf_16x9_1200x676.jpg 2024-01-04 12:22:28 PST (DEBUG): No posts or pages matching slug: 2bb33e44-93f0-4e61-94e0-07d7268a9bcf_16x9_1200x676.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (197.81 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(54, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(54) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('2bb33e44 93f0 4...', 'wp content uplo...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '2bb33e44 93f0 4...', 'wp content uplo...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/08/21/%D8%B9%D8%B1%D9%88%D8%B3-%D9%86%D8%AC%D9%84-%D8%AC%D9%88%D8%B1%D8%AC-%D9%88%D8%B3%D9%88%D9%81-%D8%AA%D9%82%D8%A8%D9%84%D9%87-%D9%88%D8%AA%D8%B1%D9%82%D8%B5-%D9%85%D8%B9%D9%87/pgdz168.com, Stored debug messages: 2024-01-04 12:21:12 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/08/21/عروس-نجل-جورج-وسوف-تقبله-وترقص-معه/pgdz168.com 2024-01-04 12:21:12 PST (DEBUG): Processing 404 for URL: /2021/08/21/عروس-نجل-جورج-وسوف-تقبله-وترقص-معه/pgdz168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2021/08/21/عروس-نجل-جورج-وسوف-تقبله-وترقص-معه/pgdz168.com 2024-01-04 12:21:13 PST (DEBUG): No posts or pages matching slug: pgdz168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (273.05 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pgdz168 com', '2021 08 21 \xD8\xB9\xD8\xB1...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pgdz168 com', '2021 08 21 \xD8\xB9\xD8\xB1...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/08/21/\xD8\xB9\xD8\xB1...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/08/21/\xD8\xB9\xD8\xB1...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/05/15/%D9%87%D9%8A%D8%AB%D9%85-%D8%A8%D9%86-%D8%AE%D9%85%D9%8A%D8%B3-%D8%A7%D9%84%D9%81%D8%A7%D8%B1%D8%B3%D9%8A-%D8%A3%D9%88%D9%84-%D9%85%D8%B5%D9%88%D8%B1-%D9%81%D9%88%D8%AA%D9%88%D8%BA%D8%B1%D8%A7%D9%81/yaxingtiyu.vip, Stored debug messages: 2024-01-04 12:18:42 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/05/15/هيثم-بن-خميس-الفارسي-أول-مصور-فوتوغراف/yaxingtiyu.vip 2024-01-04 12:18:42 PST (DEBUG): Processing 404 for URL: /2022/05/15/هيثم-بن-خميس-الفارسي-أول-مصور-فوتوغراف/yaxingtiyu.vip | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.mf44homk8200, REQUEST_URI: /2022/05/15/هيثم-بن-خميس-الفارسي-أول-مصور-فوتوغراف/yaxingtiyu.vip 2024-01-04 12:18:43 PST (DEBUG): No posts or pages matching slug: yaxingtiyu.vip 2024-01-04 12:25:46 PST (DEBUG): Slow query (423.43 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('yaxingtiyu vip', '2022 05 15 \xD9\x87\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'yaxingtiyu vip', '2022 05 15 \xD9\x87\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/05/15/\xD9\x87\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/05/15/\xD9\x87\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 28), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /apple-touch-icon-120x120.png, Stored debug messages: 2024-01-04 12:21:45 PST (DEBUG): Processing 404 for URL: /apple-touch-icon-120x120.png | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: MobileSafari/8616.2.9.10.13 CFNetwork/1485 Darwin/23.1.0, REMOTE_ADDR: 107.11.42.4nf3at46e510, REQUEST_URI: /apple-touch-icon-120x120.png 2024-01-04 12:21:45 PST (DEBUG): No posts or pages matching slug: apple-touch-icon-120x120.png 2024-01-04 12:25:46 PST (DEBUG): Slow query (240.52 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(28, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(28) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('apple touch ico...', '', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'apple touch ico...', '', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('apple-touch-ico...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('apple-touch-ico...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 21), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /www.watanserb.com/wp-content/uploads/2022/03/%D8%A3%D8%B4%D8%AE%D8%A7%D8%B5-%D9%84%D9%8A%D8%B3%D9%88%D8%A7-%D8%B3%D8%B9%D8%AF%D8%A7%D8%A1.jpg, Stored debug messages: 2024-01-04 12:18:55 PST (DEBUG): Processing 404 for URL: /www.watanserb.com/wp-content/uploads/2022/03/أشخاص-ليسوا-سعداء.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Dalvik/2.1.0 (Linux; U; Android 12; SM-A525F Build/SP1A.210812.016), REMOTE_ADDR: 109.74.192.3ulfhq2p4vvg, REQUEST_URI: /www.watanserb.com/wp-content/uploads/2022/03/أشخاص-ليسوا-سعداء.jpg 2024-01-04 12:18:56 PST (DEBUG): No posts or pages matching slug: أشخاص-ليسوا-سعداء.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (409.83 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(21, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(21) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xA3\xD8\xB4\xD8\xAE\xD8\xA7\xD8\xB5 \xD9\x84\xD9\x8A...', 'www watanserb c...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xA3\xD8\xB4\xD8\xAE\xD8\xA7\xD8\xB5 \xD9\x84\xD9\x8A...', 'www watanserb c...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('www.watanserb.c...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('www.watanserb.c...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/05/22/%D9%81%D9%8A%D8%AF%D9%8A%D9%88-%D8%B3%D8%A7%D8%A6%D9%82-%D8%AF%D8%B1%D8%A7%D8%AC%D8%A9-%D9%86%D8%A7%D8%B1%D9%8A%D8%A9-%D9%86%D8%AC%D8%A7-%D9%85%D9%86-%D8%A7%D9%84%D9%85%D9%88%D8%AA-%D8%AF%D9%87/xcai188.com, Stored debug messages: 2024-01-04 12:23:52 PST (DEBUG): Processing 404 for URL: /2016/05/22/فيديو-سائق-دراجة-نارية-نجا-من-الموت-ده/xcai188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.53.68vvkqb1th50, REQUEST_URI: /2016/05/22/فيديو-سائق-دراجة-نارية-نجا-من-الموت-ده/xcai188.com 2024-01-04 12:23:53 PST (DEBUG): No posts or pages matching slug: xcai188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (112.92 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('xcai188 com', '2016 05 22 \xD9\x81\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'xcai188 com', '2016 05 22 \xD9\x81\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/05/22/\xD9\x81\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/05/22/\xD9\x81\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/10/22/191-%D8%AC%D8%B1%D9%8A%D9%85%D8%A9-%D8%AC%D9%86%D8%B3%D9%8A%D8%A9-%D9%88128-%D9%85%D8%AA%D8%B9%D9%84%D9%82%D8%A9-%D8%A8%D8%A7%D9%84%D9%85%D8%AE%D8%AF%D8%B1%D8%A7%D8%AA-%D8%AA%D9%81%D8%A7%D8%B5%D9%8A/pmzr168.com, Stored debug messages: 2024-01-04 12:20:39 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/10/22/191-جريمة-جنسية-و128-متعلقة-بالمخدرات-تفاصي/pmzr168.com 2024-01-04 12:20:39 PST (DEBUG): Processing 404 for URL: /2022/10/22/191-جريمة-جنسية-و128-متعلقة-بالمخدرات-تفاصي/pmzr168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2022/10/22/191-جريمة-جنسية-و128-متعلقة-بالمخدرات-تفاصي/pmzr168.com 2024-01-04 12:20:40 PST (DEBUG): No posts or pages matching slug: pmzr168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (306.32 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pmzr168 com', '2022 10 22 191 ...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pmzr168 com', '2022 10 22 191 ...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/10/22/191-...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/10/22/191-...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 10), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/08/26/%D9%85%D9%88%D8%B9%D8%AF-%D9%88%D9%85%D8%B9%D9%84%D9%82-%D9%85%D8%A8%D8%A7%D8%B1%D8%A7%D8%A9-%D8%A7%D9%84%D8%B2%D9%85%D8%A7%D9%84%D9%83-%D9%88%D8%A7%D9%84%D8%A8%D9%86%D9%83-%D8%A7%D9%84%D8%A3%D9%87/mileyl.com, Stored debug messages: 2024-01-04 12:19:29 PST (DEBUG): Processing 404 for URL: /2021/08/26/موعد-ومعلق-مباراة-الزمالك-والبنك-الأه/mileyl.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.3f94hf8lb830, REQUEST_URI: /2021/08/26/موعد-ومعلق-مباراة-الزمالك-والبنك-الأه/mileyl.com 2024-01-04 12:19:30 PST (DEBUG): No posts or pages matching slug: mileyl.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (375.95 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(10, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(10) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('mileyl com', '2021 08 26 \xD9\x85\xD9\x88...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'mileyl com', '2021 08 26 \xD9\x85\xD9\x88...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/08/26/\xD9\x85\xD9\x88...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/08/26/\xD9\x85\xD9\x88...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/01/14/%D8%A5%D8%B9%D9%84%D8%A7%D9%85%D9%8A-%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D9%85%D9%87%D8%AF%D8%AF%D8%A7-%D8%A7%D9%84%D8%AE%D9%84%D9%8A%D8%AC%D9%8A%D9%8A%D9%86-%D9%83%D9%84-%D9%85%D9%86-%D9%8A%D8%B3/agzr188.com, Stored debug messages: 2024-01-04 12:21:40 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2017/01/14/إعلامي-سعودي-مهددا-الخليجيين-كل-من-يس/agzr188.com 2024-01-04 12:21:40 PST (DEBUG): Processing 404 for URL: /2017/01/14/إعلامي-سعودي-مهددا-الخليجيين-كل-من-يس/agzr188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /2017/01/14/إعلامي-سعودي-مهددا-الخليجيين-كل-من-يس/agzr188.com 2024-01-04 12:21:41 PST (DEBUG): No posts or pages matching slug: agzr188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (244.91 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzr188 com', '2017 01 14 \xD8\xA5\xD8\xB9...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzr188 com', '2017 01 14 \xD8\xA5\xD8\xB9...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/01/14/\xD8\xA5\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/01/14/\xD8\xA5\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/10/28/%D8%AD%D8%A7%D8%B1%D8%B3-%D8%A7%D9%84%D8%A8%D8%A7%D8%B1%D8%A7%D8%AA-%D8%B6%D8%A7%D8%AD%D9%8A-%D8%AE%D9%84%D9%81%D8%A7%D9%86-%D9%8A%D9%83%D8%B4%D9%81-%D8%B9%D9%86-%D8%B3%D8%A8%D8%A8-%D8%AC%D8%AF%D9%8A/agzl168.com, Stored debug messages: 2024-01-04 12:21:55 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/10/28/حارس-البارات-ضاحي-خلفان-يكشف-عن-سبب-جدي/agzl168.com 2024-01-04 12:21:55 PST (DEBUG): Processing 404 for URL: /2018/10/28/حارس-البارات-ضاحي-خلفان-يكشف-عن-سبب-جدي/agzl168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.3f7rrnlg73c0, REQUEST_URI: /2018/10/28/حارس-البارات-ضاحي-خلفان-يكشف-عن-سبب-جدي/agzl168.com 2024-01-04 12:21:56 PST (DEBUG): No posts or pages matching slug: agzl168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (229.84 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzl168 com', '2018 10 28 \xD8\xAD\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzl168 com', '2018 10 28 \xD8\xAD\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/10/28/\xD8\xAD\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/10/28/\xD8\xAD\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/10/23/%D9%86%D8%A7%D8%B4%D8%B7%D9%88%D9%86-%D9%8A%D8%A4%D9%83%D8%AF%D9%88%D9%86-%D8%A7%D9%86-%D8%A7%D8%A8%D9%86-%D8%AC%D9%85%D8%A7%D9%84-%D8%AE%D8%A7%D8%B4%D9%82%D8%AC%D9%8A-%D8%A7%D9%82%D8%AA%D9%8A%D8%AF/kaifayl.net, Stored debug messages: 2024-01-04 12:21:26 PST (DEBUG): Processing 404 for URL: /2018/10/23/ناشطون-يؤكدون-ان-ابن-جمال-خاشقجي-اقتيد/kaifayl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.117.1b8i98lo8vn8, REQUEST_URI: /2018/10/23/ناشطون-يؤكدون-ان-ابن-جمال-خاشقجي-اقتيد/kaifayl.net 2024-01-04 12:21:27 PST (DEBUG): No posts or pages matching slug: kaifayl.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (259.08 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaifayl net', '2018 10 23 \xD9\x86\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaifayl net', '2018 10 23 \xD9\x86\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/10/23/\xD9\x86\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/10/23/\xD9\x86\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/08/24/5-%D8%B3%D9%85%D8%A7%D8%AA-%D8%B4%D8%AE%D8%B5%D9%8A%D8%A9-%D9%8A%D8%B4%D8%AA%D8%B1%D9%83-%D9%81%D9%8A%D9%87%D8%A7-%D8%A3%D8%B5%D8%AD%D8%A7%D8%A8-%D8%A7%D9%84%D9%85%D9%84%D8%A7%D9%8A%D9%8A%D9%86/bandaotiyu.ai, Stored debug messages: 2024-01-04 12:23:58 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/08/24/5-سمات-شخصية-يشترك-فيها-أصحاب-الملايين/bandaotiyu.ai 2024-01-04 12:23:58 PST (DEBUG): Processing 404 for URL: /2022/08/24/5-سمات-شخصية-يشترك-فيها-أصحاب-الملايين/bandaotiyu.ai | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.18jnvgepktf8, REQUEST_URI: /2022/08/24/5-سمات-شخصية-يشترك-فيها-أصحاب-الملايين/bandaotiyu.ai 2024-01-04 12:23:59 PST (DEBUG): No posts or pages matching slug: bandaotiyu.ai 2024-01-04 12:25:46 PST (DEBUG): Slow query (107.29 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('bandaotiyu ai', '2022 08 24 5 \xD8\xB3...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'bandaotiyu ai', '2022 08 24 5 \xD8\xB3...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/08/24/5-\xD8\xB3...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/08/24/5-\xD8\xB3...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/07/17/%D8%A3%D8%B1%D8%AF%D9%88%D8%BA%D8%A7%D9%86-%D9%8A%D9%88%D8%AC%D9%91%D9%87-%D8%B1%D8%B3%D8%A7%D9%84%D8%A9%D9%8B-%D8%AD%D8%A7%D8%AF%D9%91%D8%A9-%D9%84%D9%85%D8%AD%D9%85%D8%AF-%D8%A8%D9%86-%D8%B2%D8%A7/yaxingtiyu.vip, Stored debug messages: 2024-01-04 12:20:24 PST (DEBUG): Processing 404 for URL: /2020/07/17/أردوغان-يوجّه-رسالةً-حادّة-لمحمد-بن-زا/yaxingtiyu.vip | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.127.4ou4rgg881j0, REQUEST_URI: /2020/07/17/أردوغان-يوجّه-رسالةً-حادّة-لمحمد-بن-زا/yaxingtiyu.vip 2024-01-04 12:20:25 PST (DEBUG): No posts or pages matching slug: yaxingtiyu.vip 2024-01-04 12:25:46 PST (DEBUG): Slow query (321.17 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('yaxingtiyu vip', '2020 07 17 \xD8\xA3\xD8\xB1...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'yaxingtiyu vip', '2020 07 17 \xD8\xA3\xD8\xB1...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/07/17/\xD8\xA3\xD8\xB1...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/07/17/\xD8\xA3\xD8\xB1...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/06/23/%D9%84%D9%85-%D9%8A%D9%86%D8%B3-%D8%A7%D9%84%D8%AA%D8%B7%D8%A8%D9%8A%D9%84-%D9%84%D9%80%D8%A7%D8%A8%D9%86-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D8%A7%D9%84%D8%AF%D8%A7%D8%B9%D9%8A%D8%A9-%D8%B5%D8%A7/huatihui.work, Stored debug messages: 2024-01-04 12:21:50 PST (DEBUG): Processing 404 for URL: /2018/06/23/لم-ينس-التطبيل-لـابن-سلمان-الداعية-صا/huatihui.work | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.56.5snopmbplcj0, REQUEST_URI: /2018/06/23/لم-ينس-التطبيل-لـابن-سلمان-الداعية-صا/huatihui.work 2024-01-04 12:21:51 PST (DEBUG): No posts or pages matching slug: huatihui.work 2024-01-04 12:25:46 PST (DEBUG): Slow query (235.46 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('huatihui work', '2018 06 23 \xD9\x84\xD9\x85...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'huatihui work', '2018 06 23 \xD9\x84\xD9\x85...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/06/23/\xD9\x84\xD9\x85...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/06/23/\xD9\x84\xD9\x85...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/12/18/%D8%AA%D9%82%D8%B1%D9%8A%D8%B1-%D8%A7%D9%84%D8%B5%D8%AD%D8%B1%D8%A7%D8%A1-%D8%A7%D9%84%D8%BA%D8%B1%D8%A8%D9%8A%D8%A9-%D8%B3%D8%AA%D9%83%D9%88%D9%86-%D9%81%D9%8A%D8%AA%D9%86%D8%A7%D9%85-%D9%84/yxty168.com, Stored debug messages: 2024-01-04 12:17:51 PST (DEBUG): Processing 404 for URL: /2021/12/18/تقرير-الصحراء-الغربية-ستكون-فيتنام-ل/yxty168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.40.3jbe8b8lk14g, REQUEST_URI: /2021/12/18/تقرير-الصحراء-الغربية-ستكون-فيتنام-ل/yxty168.com 2024-01-04 12:17:51 PST (DEBUG): No posts or pages matching slug: yxty168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (474.67 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('yxty168 com', '2021 12 18 \xD8\xAA\xD9\x82...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'yxty168 com', '2021 12 18 \xD8\xAA\xD9\x82...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/12/18/\xD8\xAA\xD9\x82...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/12/18/\xD8\xAA\xD9\x82...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 17), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/03/14/%D8%A7%D9%84%D8%A8%D8%B4%D8%B1%D9%8A%D8%A9-%D8%AA%D9%86%D8%AA%D9%87%D9%8A-%D8%A8%D8%B9%D8%AF-%D8%A3%D9%84%D9%81-%D8%B3%D9%86%D8%A9-%D9%87%D8%B0%D9%87-%D8%A3%D8%A8%D8%B1%D8%B2-%D8%AA%D9%88%D9%82/jiangnantiyu.live, Stored debug messages: 2024-01-04 12:20:32 PST (DEBUG): Processing 404 for URL: /2018/03/14/البشرية-تنتهي-بعد-ألف-سنة-هذه-أبرز-توق/jiangnantiyu.live | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.v1ouqr6cggc0, REQUEST_URI: /2018/03/14/البشرية-تنتهي-بعد-ألف-سنة-هذه-أبرز-توق/jiangnantiyu.live 2024-01-04 12:20:33 PST (DEBUG): No posts or pages matching slug: jiangnantiyu.live 2024-01-04 12:25:46 PST (DEBUG): Slow query (313.47 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(17, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(17) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('jiangnantiyu li...', '2018 03 14 \xD8\xA7\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'jiangnantiyu li...', '2018 03 14 \xD8\xA7\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/03/14/\xD8\xA7\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/03/14/\xD8\xA7\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/12/11/%D8%AA%D8%A3%D9%87%D9%84-%D8%A7%D9%84%D9%85%D9%86%D8%AA%D8%AE%D8%A8-%D8%A7%D9%84%D9%85%D8%BA%D8%B1%D8%A8%D9%8A-%D9%8A%D8%B7%D9%8A%D8%AD-%D8%A8%D9%85%D8%AF%D9%8A%D8%B1-%D8%B9%D8%A7%D9%85-%D8%A7%D9%84/kaiyun.work, Stored debug messages: 2024-01-04 12:19:39 PST (DEBUG): Processing 404 for URL: /2022/12/11/تأهل-المنتخب-المغربي-يطيح-بمدير-عام-ال/kaiyun.work | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.47.7u2cenumjb70, REQUEST_URI: /2022/12/11/تأهل-المنتخب-المغربي-يطيح-بمدير-عام-ال/kaiyun.work 2024-01-04 12:19:40 PST (DEBUG): No posts or pages matching slug: kaiyun.work 2024-01-04 12:25:46 PST (DEBUG): Slow query (365.71 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaiyun work', '2022 12 11 \xD8\xAA\xD8\xA3...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaiyun work', '2022 12 11 \xD8\xAA\xD8\xA3...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/12/11/\xD8\xAA\xD8\xA3...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/12/11/\xD8\xAA\xD8\xA3...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 22), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tag/%D8%A7%D8%B1%D8%AA%D8%AF%D8%A7%D8%A1-%D8%A3%D8%AD%D8%B0%D9%8A%D8%A9-%D8%BA%D9%8A%D8%B1-%D9%85%D8%B1%D9%8A%D8%AD%D8%A9/, Stored debug messages: 2024-01-04 12:24:09 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /tag/ارتداء-أحذية-غير-مريحة/ 2024-01-04 12:24:09 PST (DEBUG): Processing 404 for URL: /tag/ارتداء-أحذية-غير-مريحة/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /tag/ارتداء-أحذية-غير-مريحة/ 2024-01-04 12:24:10 PST (DEBUG): No posts or pages matching slug: ارتداء-أحذية-غير-مريحة 2024-01-04 12:25:46 PST (DEBUG): Slow query (95.66 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(22, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(22) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xA7\xD8\xB1\xD8\xAA\xD8\xAF\xD8\xA7\xD8\xA1 \xD8\xA3...', 'tag \xD8\xA7\xD8\xB1\xD8\xAA\xD8\xAF\xD8\xA7\xD8...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xA7\xD8\xB1\xD8\xAA\xD8\xAF\xD8\xA7\xD8\xA1 \xD8\xA3...', 'tag \xD8\xA7\xD8\xB1\xD8\xAA\xD8\xAF\xD8\xA7\xD8...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tag/\xD8\xA7\xD8\xB1\xD8\xAA\xD8\xAF\xD8\xA7\xD8...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tag/\xD8\xA7\xD8\xB1\xD8\xAA\xD8\xAF\xD8\xA7\xD8...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 28), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /apple-touch-icon-120x120.png, Stored debug messages: 2024-01-04 12:20:21 PST (DEBUG): Processing 404 for URL: /apple-touch-icon-120x120.png | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: MobileSafari/8613.7.1.0.13 CFNetwork/1335.0.3.4 Darwin/21.6.0, REMOTE_ADDR: 73.210.2.38qc59b53ihg, REQUEST_URI: /apple-touch-icon-120x120.png 2024-01-04 12:20:22 PST (DEBUG): No posts or pages matching slug: apple-touch-icon-120x120.png 2024-01-04 12:25:46 PST (DEBUG): Slow query (324.45 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(28, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(28) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('apple touch ico...', '', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'apple touch ico...', '', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('apple-touch-ico...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('apple-touch-ico...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/06/26/%D9%87%D8%B0%D8%A7-%D9%85%D8%A7-%D9%8A%D8%AD%D8%AF%D8%AB-%D9%84%D9%84%D8%AC%D8%B3%D9%85-%D8%B9%D9%86%D8%AF-%D8%B4%D8%B1%D8%A8-%D8%A7%D9%84%D8%AF%D9%91%D9%85-%D9%88%D9%84%D9%87%D8%B0%D8%A7-%D8%A7%D9%84/wanbo168.net, Stored debug messages: 2024-01-04 12:21:25 PST (DEBUG): Processing 404 for URL: /2016/06/26/هذا-ما-يحدث-للجسم-عند-شرب-الدّم-ولهذا-ال/wanbo168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.34.puf6j13okao0, REQUEST_URI: /2016/06/26/هذا-ما-يحدث-للجسم-عند-شرب-الدّم-ولهذا-ال/wanbo168.net 2024-01-04 12:21:26 PST (DEBUG): No posts or pages matching slug: wanbo168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (260.1 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('wanbo168 net', '2016 06 26 \xD9\x87\xD8\xB0...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'wanbo168 net', '2016 06 26 \xD9\x87\xD8\xB0...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/06/26/\xD9\x87\xD8\xB0...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/06/26/\xD9\x87\xD8\xB0...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/01/26/%D9%82%D8%B1%D8%A7%D8%B1-%D8%AC%D8%AF%D9%8A%D8%AF-%D9%85%D9%86-%D8%A5%D8%AF%D8%A7%D8%B1%D8%A9-%D8%A8%D8%A7%D9%8A%D8%AF%D9%86-%D8%A8%D8%B4%D8%A3%D9%86-%D8%A7%D9%84%D8%AD%D9%88%D8%AB%D9%8A-%D8%B3%D9%8A/hgty188.net, Stored debug messages: 2024-01-04 12:21:22 PST (DEBUG): Processing 404 for URL: /2021/01/26/قرار-جديد-من-إدارة-بايدن-بشأن-الحوثي-سي/hgty188.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.23.352auk7meal0, REQUEST_URI: /2021/01/26/قرار-جديد-من-إدارة-بايدن-بشأن-الحوثي-سي/hgty188.net 2024-01-04 12:21:23 PST (DEBUG): No posts or pages matching slug: hgty188.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (263.07 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('hgty188 net', '2021 01 26 \xD9\x82\xD8\xB1...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'hgty188 net', '2021 01 26 \xD9\x82\xD8\xB1...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/01/26/\xD9\x82\xD8\xB1...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/01/26/\xD9\x82\xD8\xB1...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/09/18/%D8%B4%D8%A7%D9%87%D8%AF-%D8%AD%D9%83%D9%88%D9%85%D8%A9-%D8%AD%D8%B1%D8%A7%D9%85%D9%8A%D8%A9-%D8%A3%D8%B1%D8%AF%D9%86%D9%8A%D9%88%D9%86-%D8%BA%D8%A7%D8%B6%D8%A8%D9%88%D9%86-%D9%8A%D8%B7%D8%B1/shaba188.net, Stored debug messages: 2024-01-04 12:21:34 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/09/18/شاهد-حكومة-حرامية-أردنيون-غاضبون-يطر/shaba188.net 2024-01-04 12:21:34 PST (DEBUG): Processing 404 for URL: /2018/09/18/شاهد-حكومة-حرامية-أردنيون-غاضبون-يطر/shaba188.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2018/09/18/شاهد-حكومة-حرامية-أردنيون-غاضبون-يطر/shaba188.net 2024-01-04 12:21:34 PST (DEBUG): No posts or pages matching slug: shaba188.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (251.62 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('shaba188 net', '2018 09 18 \xD8\xB4\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'shaba188 net', '2018 09 18 \xD8\xB4\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/09/18/\xD8\xB4\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/09/18/\xD8\xB4\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/04/23/%D8%A8%D8%B9%D8%AF-%D9%81%D9%82%D8%AF-%D8%A7%D9%84%D8%A5%D8%AA%D8%B5%D8%A7%D9%84-%D8%A8%D9%87%D9%85%D8%A7-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A%D8%A9-%D8%AA%D9%83%D8%B4%D9%81-%D9%85%D8%B5/xcai188.com, Stored debug messages: 2024-01-04 12:23:52 PST (DEBUG): Processing 404 for URL: /2019/04/23/بعد-فقد-الإتصال-بهما-السعودية-تكشف-مص/xcai188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.31.3m8ub6msq3og, REQUEST_URI: /2019/04/23/بعد-فقد-الإتصال-بهما-السعودية-تكشف-مص/xcai188.com 2024-01-04 12:23:53 PST (DEBUG): No posts or pages matching slug: xcai188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (113.35 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('xcai188 com', '2019 04 23 \xD8\xA8\xD8\xB9...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'xcai188 com', '2019 04 23 \xD8\xA8\xD8\xB9...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/04/23/\xD8\xA8\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/04/23/\xD8\xA8\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 39), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /%D9%85%D9%88%D8%AF%D9%84-%D8%B1%D9%88%D8%B2-%D8%AA%D8%B3%D8%AA%D9%86%D8%AC%D8%AF-%D8%A8%D8%A7%D8%A8%D9%86-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D9%84%D9%8A%D9%86%D9%82%D8%B0%D9%87%D8%A7-%D9%85%D9%86-%D8%B2/, Stored debug messages: 2024-01-04 12:24:05 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /مودل-روز-تستنجد-بابن-سلمان-لينقذها-من-ز/ 2024-01-04 12:24:05 PST (DEBUG): Processing 404 for URL: /مودل-روز-تستنجد-بابن-سلمان-لينقذها-من-ز/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /مودل-روز-تستنجد-بابن-سلمان-لينقذها-من-ز/ 2024-01-04 12:24:06 PST (DEBUG): No posts or pages matching slug: مودل-روز-تستنجد-بابن-سلمان-لينقذها-من-ز 2024-01-04 12:25:46 PST (DEBUG): Slow query (100.09 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(39, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(39) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD9\x85\xD9\x88\xD8\xAF\xD9\x84 \xD8\xB1\xD9\x88\xD8\xB2...', '\xD9\x85\xD9\x88\xD8\xAF\xD9\x84 \xD8\xB1\xD9\x88\xD8\xB2...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD9\x85\xD9\x88\xD8\xAF\xD9\x84 \xD8\xB1\xD9\x88\xD8\xB2...', '\xD9\x85\xD9\x88\xD8\xAF\xD9\x84 \xD8\xB1\xD9\x88\xD8\xB2...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('\xD9\x85\xD9\x88\xD8\xAF\xD9\x84-\xD8\xB1\xD9\x88\xD8\xB2...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('\xD9\x85\xD9\x88\xD8\xAF\xD9\x84-\xD8\xB1\xD9\x88\xD8\xB2...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/07/29/%D9%85%D9%87%D9%86%D8%AF-%D8%A8%D8%AA%D8%A7%D8%B1-%D9%8A%D9%83%D8%AA%D8%A8-%D8%AC%D8%AF%D9%84%D9%8A%D8%A9-%D8%B1%D9%82%D8%B5%D8%A9-%D8%A7%D9%84%D9%83%D9%8A%D9%83%D9%8A-%D9%81%D9%8A-%D8%A7%D9%84%D8%B3/kaiyuanqp.net, Stored debug messages: 2024-01-04 12:22:07 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/07/29/مهند-بتار-يكتب-جدلية-رقصة-الكيكي-في-الس/kaiyuanqp.net 2024-01-04 12:22:07 PST (DEBUG): Processing 404 for URL: /2018/07/29/مهند-بتار-يكتب-جدلية-رقصة-الكيكي-في-الس/kaiyuanqp.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2018/07/29/مهند-بتار-يكتب-جدلية-رقصة-الكيكي-في-الس/kaiyuanqp.net 2024-01-04 12:22:08 PST (DEBUG): No posts or pages matching slug: kaiyuanqp.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (218.46 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaiyuanqp net', '2018 07 29 \xD9\x85\xD9\x87...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaiyuanqp net', '2018 07 29 \xD9\x85\xD9\x87...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/07/29/\xD9\x85\xD9\x87...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/07/29/\xD9\x85\xD9\x87...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 4), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /latest/feed/, Stored debug messages: 2024-01-04 12:17:46 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /latest/feed/ 2024-01-04 12:17:46 PST (DEBUG): Processing 404 for URL: /latest/feed/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /latest/feed/ 2024-01-04 12:17:47 PST (DEBUG): No posts or pages matching slug: feed 2024-01-04 12:25:46 PST (DEBUG): Slow query (479.04 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(4, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(4) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('feed', 'latest feed ', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'feed', 'latest feed ', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('latest/feed/', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('latest/feed/') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2014/12/02/%D8%AF%D9%8A%D9%81%D9%8A%D8%AF-%D9%87%D9%8A%D8%B1%D8%B3%D8%AA-%D8%A7%D9%84%D9%85%D9%84%D9%83-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D8%A7%D9%84%D8%B0%D9%8A-%D8%AE%D8%A7%D8%B6-%D8%A7%D9%84%D9%85/jnty168.net, Stored debug messages: 2024-01-04 12:19:39 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2014/12/02/ديفيد-هيرست-الملك-السعودي-الذي-خاض-الم/jnty168.net 2024-01-04 12:19:39 PST (DEBUG): Processing 404 for URL: /2014/12/02/ديفيد-هيرست-الملك-السعودي-الذي-خاض-الم/jnty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2014/12/02/ديفيد-هيرست-الملك-السعودي-الذي-خاض-الم/jnty168.net 2024-01-04 12:19:40 PST (DEBUG): No posts or pages matching slug: jnty168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (366.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('jnty168 net', '2014 12 02 \xD8\xAF\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'jnty168 net', '2014 12 02 \xD8\xAF\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2014/12/02/\xD8\xAF\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2014/12/02/\xD8\xAF\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/02/01/%D8%A7%D8%A8%D9%86%D8%A9-%D8%A7%D9%84%D8%B9%D8%A7%D9%87%D9%84-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D8%A7%D9%84%D9%88%D8%AD%D9%8A%D8%AF%D8%A9-%D8%AD%D8%B5%D8%A9-%D8%A8%D9%86%D8%AA-%D8%B3%D9%84/bandaotiyu.ai, Stored debug messages: 2024-01-04 12:19:24 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /2023/02/01/ابنة-العاهل-السعودي-الوحيدة-حصة-بنت-سل/bandaotiyu.ai 2024-01-04 12:19:24 PST (DEBUG): Processing 404 for URL: /2023/02/01/ابنة-العاهل-السعودي-الوحيدة-حصة-بنت-سل/bandaotiyu.ai | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 66.249.69.45r375i2moj0, REQUEST_URI: /2023/02/01/ابنة-العاهل-السعودي-الوحيدة-حصة-بنت-سل/bandaotiyu.ai 2024-01-04 12:19:25 PST (DEBUG): No posts or pages matching slug: bandaotiyu.ai 2024-01-04 12:25:46 PST (DEBUG): Slow query (380.99 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('bandaotiyu ai', '2023 02 01 \xD8\xA7\xD8\xA8...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'bandaotiyu ai', '2023 02 01 \xD8\xA7\xD8\xA8...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/02/01/\xD8\xA7\xD8\xA8...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/02/01/\xD8\xA7\xD8\xA8...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/04/28/%D8%A8%D9%84%D9%88%D9%85%D8%A8%D9%8A%D8%B1%D8%BA-%D8%AA%D8%AD%D8%B0%D8%B1-%D9%85%D9%86-%D9%85%D8%B3%D8%AA%D9%82%D8%A8%D9%84-%D9%85%D8%AC%D9%87%D9%88%D9%84-%D8%B5%D8%A8%D8%B1-%D8%A7%D9%84%D8%B3%D9%88/pgdz168.com, Stored debug messages: 2024-01-04 12:17:43 PST (DEBUG): Processing 404 for URL: /2023/04/28/بلومبيرغ-تحذر-من-مستقبل-مجهول-صبر-السو/pgdz168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html), REMOTE_ADDR: 85.208.96.3f7rrnlg73c0, REQUEST_URI: /2023/04/28/بلومبيرغ-تحذر-من-مستقبل-مجهول-صبر-السو/pgdz168.com 2024-01-04 12:17:44 PST (DEBUG): No posts or pages matching slug: pgdz168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (481.97 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pgdz168 com', '2023 04 28 \xD8\xA8\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pgdz168 com', '2023 04 28 \xD8\xA8\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/04/28/\xD8\xA8\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/04/28/\xD8\xA8\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 40), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /apple-touch-icon-120x120-precomposed.png, Stored debug messages: 2024-01-04 12:19:19 PST (DEBUG): Processing 404 for URL: /apple-touch-icon-120x120-precomposed.png | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: MobileSafari/8613.7.1.0.13 CFNetwork/1335.0.3.4 Darwin/21.6.0, REMOTE_ADDR: 73.210.2.38qc59b53ihg, REQUEST_URI: /apple-touch-icon-120x120-precomposed.png 2024-01-04 12:19:20 PST (DEBUG): No posts or pages matching slug: apple-touch-icon-120x120-precomposed.png 2024-01-04 12:25:46 PST (DEBUG): Slow query (386.14 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(40, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(40) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('apple touch ico...', '', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'apple touch ico...', '', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('apple-touch-ico...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('apple-touch-ico...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 28), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: https://www.watanserb.com/2020/06/08/%D9%81%D8%B6%D8%A7%D8%A6%D8%AD-%D8%A7%D9%86%D8%AC%D9%8A-%D8%AE%D9%88%D8%B1%D9%8A-%D8%AA%D8%AE%D8%B1%D8%AC-%D9%84%D9%84%D8%B9%D9%84%D9%86/, Requested URL: /wp-content/uploads/2020/06/%D8%A7%D9%86%D8%AC%D9%8A-%D8%AE%D9%88%D8%B1%D9%8A-%D8%AF%D8%A7%D8%A6%D9%85%D8%A7-%D8%AA%D9%86%D8%B4%D8%B1-%3Ca%20href=, Stored debug messages: 2024-01-04 12:18:33 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2020/06/انجي-خوري-دائما-تنشر-a href= | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Mobile Safari/537.36, REMOTE_ADDR: 37.237.209.1jstfv17em08, REQUEST_URI: /wp-content/uploads/2020/06/انجي-خوري-دائما-تنشر-<a href= 2024-01-04 12:18:34 PST (DEBUG): No posts or pages matching slug: انجي-خوري-دائما-تنشر-a href= 2024-01-04 12:25:46 PST (DEBUG): Slow query (431.84 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(28, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(28) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xA7\xD9\x86\xD8\xAC\xD9\x8A \xD8\xAE\xD9\x88\xD8\xB1...', 'wp content uplo...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xA7\xD9\x86\xD8\xAC\xD9\x8A \xD8\xAE\xD9\x88\xD8\xB1...', 'wp content uplo...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 8), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/06/15/%D9%86%D8%A7%D8%B4%D8%B7%D8%A9-%D8%A3%D8%B1%D8%AF%D9%86%D9%8A%D8%A9-%D8%AA%D8%AB%D9%8A%D8%B1-%D8%B2%D9%88%D8%A8%D8%B9%D8%A9-%D8%A8%D8%B9%D8%AF-%D8%AF%D8%B9%D9%88%D8%AA%D9%87%D8%A7-%D8%A7%D9%84%D9%81/pmzr.org, Stored debug messages: 2024-01-04 12:19:33 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2020/06/15/ناشطة-أردنية-تثير-زوبعة-بعد-دعوتها-الف/pmzr.org 2024-01-04 12:19:33 PST (DEBUG): Processing 404 for URL: /2020/06/15/ناشطة-أردنية-تثير-زوبعة-بعد-دعوتها-الف/pmzr.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4ou4rgg881j0, REQUEST_URI: /2020/06/15/ناشطة-أردنية-تثير-زوبعة-بعد-دعوتها-الف/pmzr.org 2024-01-04 12:19:34 PST (DEBUG): No posts or pages matching slug: pmzr.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (372.41 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(8, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(8) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pmzr org', '2020 06 15 \xD9\x86\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pmzr org', '2020 06 15 \xD9\x86\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/06/15/\xD9\x86\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/06/15/\xD9\x86\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 15), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/04/30/%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D9%82%D8%AA%D9%84-%D8%B5%D8%AF%D9%8A%D9%82%D9%87-%D8%A8%D8%B9%D8%AF-%D8%A7%D9%83%D8%AA%D8%B4%D8%A7%D9%81%D9%87-%D8%A8%D8%A3%D9%86%D9%87-%D8%A3%D9%82%D8%A7%D9%85-%D8%B9/huatihui188.net, Stored debug messages: 2024-01-04 12:19:27 PST (DEBUG): Processing 404 for URL: /2016/04/30/سعودي-قتل-صديقه-بعد-اكتشافه-بأنه-أقام-ع/huatihui188.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html), REMOTE_ADDR: 185.191.171.621baderv9f0, REQUEST_URI: /2016/04/30/سعودي-قتل-صديقه-بعد-اكتشافه-بأنه-أقام-ع/huatihui188.net 2024-01-04 12:19:27 PST (DEBUG): No posts or pages matching slug: huatihui188.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (378.59 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(15, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(15) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('huatihui188 net', '2016 04 30 \xD8\xB3\xD8\xB9...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'huatihui188 net', '2016 04 30 \xD8\xB3\xD8\xB9...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/04/30/\xD8\xB3\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/04/30/\xD8\xB3\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 20), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/01/21/%D8%B4%D8%A7%D9%87%D8%AF-%D8%A3%D9%87%D8%AF%D8%A7%D9%81-%D8%A7%D9%84%D8%A3%D9%87%D9%84%D9%8A-%D8%A7%D9%84%D9%85%D8%B5%D8%B1%D9%8A-%D9%81%D9%8A-%D8%B4%D8%A8%D8%A7%D9%83-%D8%A7%D9%84%D9%85%D9%82/ag-zunlongkaishi.net, Stored debug messages: 2024-01-04 12:20:50 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/01/21/شاهد-أهداف-الأهلي-المصري-في-شباك-المق/ag-zunlongkaishi.net 2024-01-04 12:20:50 PST (DEBUG): Processing 404 for URL: /2021/01/21/شاهد-أهداف-الأهلي-المصري-في-شباك-المق/ag-zunlongkaishi.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2021/01/21/شاهد-أهداف-الأهلي-المصري-في-شباك-المق/ag-zunlongkaishi.net 2024-01-04 12:20:51 PST (DEBUG): No posts or pages matching slug: ag-zunlongkaishi.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (295.1 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(20, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(20) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('ag zunlongkaish...', '2021 01 21 \xD8\xB4\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'ag zunlongkaish...', '2021 01 21 \xD8\xB4\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/01/21/\xD8\xB4\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/01/21/\xD8\xB4\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/08/08/%D8%B4%D8%A7%D9%87%D8%AF-%D8%A3%D9%88%D9%84-%D8%B5%D9%88%D8%B1%D8%A9-%D9%84%D8%B2%D9%88%D8%AC-%D9%86%D8%AC%D9%88%D9%89-%D9%83%D8%B1%D9%85-%D8%A7%D9%84%D9%85%D8%B3%D8%AA%D9%82%D8%A8%D9%84%D9%8A/hgty188.net, Stored debug messages: 2024-01-04 12:21:47 PST (DEBUG): Processing 404 for URL: /2021/08/08/شاهد-أول-صورة-لزوج-نجوى-كرم-المستقبلي/hgty188.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.45.323fr6rmrsj0, REQUEST_URI: /2021/08/08/شاهد-أول-صورة-لزوج-نجوى-كرم-المستقبلي/hgty188.net 2024-01-04 12:21:47 PST (DEBUG): No posts or pages matching slug: hgty188.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (238.57 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('hgty188 net', '2021 08 08 \xD8\xB4\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'hgty188 net', '2021 08 08 \xD8\xB4\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/08/08/\xD8\xB4\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/08/08/\xD8\xB4\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 16), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /www.watanserb.com/wp-content/uploads/2022/03/%D9%85%D8%AD%D9%85%D8%AF-%D8%A8%D9%86-%D8%B2%D8%A7%D9%8A%D8%AF.jpg, Stored debug messages: 2024-01-04 12:22:01 PST (DEBUG): Processing 404 for URL: /www.watanserb.com/wp-content/uploads/2022/03/محمد-بن-زايد.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Dalvik/2.1.0 (Linux; U; Android 12; SM-A525F Build/SP1A.210812.016), REMOTE_ADDR: 109.74.192.3ulfhq2p4vvg, REQUEST_URI: /www.watanserb.com/wp-content/uploads/2022/03/محمد-بن-زايد.jpg 2024-01-04 12:22:02 PST (DEBUG): No posts or pages matching slug: محمد-بن-زايد.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (224.02 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(16, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(16) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD9\x85\xD8\xAD\xD9\x85\xD8\xAF \xD8\xA8\xD9\x86 \xD8...', 'www watanserb c...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD9\x85\xD8\xAD\xD9\x85\xD8\xAF \xD8\xA8\xD9\x86 \xD8...', 'www watanserb c...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('www.watanserb.c...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('www.watanserb.c...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/04/14/%D8%AA%D9%82%D8%B1%D9%8A%D8%B1-%D8%A7%D9%84%D9%83%D9%88%D9%86%D8%BA%D8%B1%D8%B3-%D8%A7%D9%84%D8%A3%D9%85%D8%B1%D9%8A%D9%83%D9%8A-%D8%A7%D9%84%D9%81%D8%B3%D8%A7%D8%AF-%D9%88%D8%A7%D8%B6%D8%AD-%D9%81/kaiyun-168.com, Stored debug messages: 2024-01-04 12:21:04 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/04/14/تقرير-الكونغرس-الأمريكي-الفساد-واضح-ف/kaiyun-168.com 2024-01-04 12:21:04 PST (DEBUG): Processing 404 for URL: /2016/04/14/تقرير-الكونغرس-الأمريكي-الفساد-واضح-ف/kaiyun-168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.6jr526g0l480, REQUEST_URI: /2016/04/14/تقرير-الكونغرس-الأمريكي-الفساد-واضح-ف/kaiyun-168.com 2024-01-04 12:21:05 PST (DEBUG): No posts or pages matching slug: kaiyun-168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (281.13 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaiyun 168 com', '2016 04 14 \xD8\xAA\xD9\x82...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaiyun 168 com', '2016 04 14 \xD8\xAA\xD9\x82...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/04/14/\xD8\xAA\xD9\x82...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/04/14/\xD8\xAA\xD9\x82...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 17), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/07/25/%D8%B3%D8%A8%D8%A8-%D9%88%D9%81%D8%A7%D8%A9-%D9%85%D8%AD%D9%85%D9%88%D8%AF-%D8%AC%D8%B1%D9%83%D8%B3-%D9%86%D8%AC%D9%85-%D8%A7%D9%84%D8%AE%D9%88%D8%A7%D9%84%D9%8A-%D8%A7%D9%84%D8%B0%D9%8A/jiangnanty188.com, Stored debug messages: 2024-01-04 12:21:28 PST (DEBUG): Processing 404 for URL: /2023/07/25/سبب-وفاة-محمود-جركس-نجم-الخوالي-الذي/jiangnanty188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.113.vv2jrbn3qfk0, REQUEST_URI: /2023/07/25/سبب-وفاة-محمود-جركس-نجم-الخوالي-الذي/jiangnanty188.com 2024-01-04 12:21:29 PST (DEBUG): No posts or pages matching slug: jiangnanty188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (257.5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(17, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(17) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('jiangnanty188 c...', '2023 07 25 \xD8\xB3\xD8\xA8...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'jiangnanty188 c...', '2023 07 25 \xD8\xB3\xD8\xA8...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/07/25/\xD8\xB3\xD8\xA8...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/07/25/\xD8\xB3\xD8\xA8...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 20), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/10/03/%D8%B5%D8%AF%D9%85%D8%A9-%D9%84%D9%83%D9%8A%D9%85-%D9%83%D8%A7%D8%B1%D8%AF%D8%A7%D8%B4%D9%8A%D8%A7%D9%86-%D9%88%D9%85%D8%A7-%D8%AD%D8%AF%D8%AB-%D9%84%D9%87%D8%A7-%D9%84%D9%85-%D9%8A%D9%83%D9%86-%D9%81/ag-zunlongkaishi.net, Stored debug messages: 2024-01-04 12:19:09 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/10/03/صدمة-لكيم-كارداشيان-وما-حدث-لها-لم-يكن-ف/ag-zunlongkaishi.net 2024-01-04 12:19:09 PST (DEBUG): Processing 404 for URL: /2022/10/03/صدمة-لكيم-كارداشيان-وما-حدث-لها-لم-يكن-ف/ag-zunlongkaishi.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4svnogt3u090, REQUEST_URI: /2022/10/03/صدمة-لكيم-كارداشيان-وما-حدث-لها-لم-يكن-ف/ag-zunlongkaishi.net 2024-01-04 12:19:10 PST (DEBUG): No posts or pages matching slug: ag-zunlongkaishi.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (396.47 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(20, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(20) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('ag zunlongkaish...', '2022 10 03 \xD8\xB5\xD8\xAF...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'ag zunlongkaish...', '2022 10 03 \xD8\xB5\xD8\xAF...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/10/03/\xD8\xB5\xD8\xAF...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/10/03/\xD8\xB5\xD8\xAF...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 9), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/01/09/%D9%85%D9%81%D9%8A%D8%AF-%D9%81%D9%88%D8%B2%D9%8A-%D9%8A%D8%B6%D8%B9-%D9%85%D8%B0%D9%8A%D8%B9%D8%A9-mbc-%D9%81%D9%8A-%D9%85%D9%88%D9%82%D9%81-%D9%85%D9%8F%D8%AD%D8%B1%D8%AC-%D9%88%D9%8A%D9%87/agbjl.org, Stored debug messages: 2024-01-04 12:19:25 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/01/09/مفيد-فوزي-يضع-مذيعة-mbc-في-موقف-مُحرج-ويه/agbjl.org 2024-01-04 12:19:25 PST (DEBUG): Processing 404 for URL: /2022/01/09/مفيد-فوزي-يضع-مذيعة-mbc-في-موقف-مُحرج-ويه/agbjl.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2022/01/09/مفيد-فوزي-يضع-مذيعة-mbc-في-موقف-مُحرج-ويه/agbjl.org 2024-01-04 12:19:26 PST (DEBUG): No posts or pages matching slug: agbjl.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (380.46 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(9, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(9) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agbjl org', '2022 01 09 \xD9\x85\xD9\x81...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agbjl org', '2022 01 09 \xD9\x85\xD9\x81...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/01/09/\xD9\x85\xD9\x81...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/01/09/\xD9\x85\xD9\x81...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 4), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /latest/feed/, Stored debug messages: 2024-01-04 12:20:56 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /latest/feed/ 2024-01-04 12:20:56 PST (DEBUG): Processing 404 for URL: /latest/feed/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /latest/feed/ 2024-01-04 12:20:57 PST (DEBUG): No posts or pages matching slug: feed 2024-01-04 12:25:46 PST (DEBUG): Slow query (289.43 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(4, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(4) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('feed', 'latest feed ', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'feed', 'latest feed ', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('latest/feed/', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('latest/feed/') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 10), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/08/02/%D9%87%D8%B0%D9%87-%D8%A3%D9%81%D8%B6%D9%84-10-%D9%88%D8%AC%D9%87%D8%A7%D8%AA-%D8%AF%D9%88%D9%84%D9%8A%D8%A9-%D9%84%D9%84%D9%85%D8%B3%D8%A7%D9%81%D8%B1%D9%8A%D9%86-%D8%A7%D9%84%D8%A3%D9%85%D8%B1%D9%8A/%E5%BC%80%E4%BA%91%E4%BD%93%E8%82%B2%E5%B9%B3%E5%8F%B0.com, Stored debug messages: 2024-01-04 12:23:17 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/08/02/هذه-أفضل-10-وجهات-دولية-للمسافرين-الأمري/开云体育平台.com 2024-01-04 12:23:17 PST (DEBUG): Processing 404 for URL: /2023/08/02/هذه-أفضل-10-وجهات-دولية-للمسافرين-الأمري/开云体育平台.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /2023/08/02/هذه-أفضل-10-وجهات-دولية-للمسافرين-الأمري/开云体育平台.com 2024-01-04 12:23:18 PST (DEBUG): No posts or pages matching slug: 开云体育平台.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (148.37 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(10, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(10) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xE5\xBC\x80\xE4\xBA\x91\xE4\xBD\x93\xE8\x82\xB2\xE5\xB9\xB3...', '2023 08 02 \xD9\x87\xD8\xB0...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xE5\xBC\x80\xE4\xBA\x91\xE4\xBD\x93\xE8\x82\xB2\xE5\xB9\xB3...', '2023 08 02 \xD9\x87\xD8\xB0...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/08/02/\xD9\x87\xD8\xB0...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/08/02/\xD9\x87\xD8\xB0...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 16), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /www.watanserb.com/wp-content/uploads/2022/03/%D9%85%D8%B1%D8%AA%D8%B2%D9%82%D8%A9-%D9%81%D8%A7%D8%BA%D9%86%D8%B1.jpg, Stored debug messages: 2024-01-04 12:17:42 PST (DEBUG): Processing 404 for URL: /www.watanserb.com/wp-content/uploads/2022/03/مرتزقة-فاغنر.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Dalvik/2.1.0 (Linux; U; Android 12; SM-A525F Build/SP1A.210812.016), REMOTE_ADDR: 109.74.192.3ulfhq2p4vvg, REQUEST_URI: /www.watanserb.com/wp-content/uploads/2022/03/مرتزقة-فاغنر.jpg 2024-01-04 12:17:42 PST (DEBUG): No posts or pages matching slug: مرتزقة-فاغنر.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (483.7 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(16, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(16) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD9\x85\xD8\xB1\xD8\xAA\xD8\xB2\xD9\x82\xD8\xA9 \xD9\x81...', 'www watanserb c...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD9\x85\xD8\xB1\xD8\xAA\xD8\xB2\xD9\x82\xD8\xA9 \xD9\x81...', 'www watanserb c...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('www.watanserb.c...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('www.watanserb.c...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/04/05/%D8%A7%D9%82%D8%AA%D8%AD%D8%A7%D9%85-%D8%A7%D9%84%D8%A3%D9%82%D8%B5%D9%89-%D9%85%D8%B3%D9%82%D8%B7-%D8%AA%D9%8F%D9%86%D8%AF%D8%AF-%D9%88%D8%A7%D9%84%D8%B4%D9%8A%D8%AE-%D8%A7%D9%84%D8%AE%D9%84%D9%8A/pmtiyu168.com, Stored debug messages: 2024-01-04 12:21:37 PST (DEBUG): Processing 404 for URL: /2023/04/05/اقتحام-الأقصى-مسقط-تُندد-والشيخ-الخلي/pmtiyu168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.20.89dnrm43ijs0, REQUEST_URI: /2023/04/05/اقتحام-الأقصى-مسقط-تُندد-والشيخ-الخلي/pmtiyu168.com 2024-01-04 12:21:38 PST (DEBUG): No posts or pages matching slug: pmtiyu168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (247.73 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pmtiyu168 com', '2023 04 05 \xD8\xA7\xD9\x82...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pmtiyu168 com', '2023 04 05 \xD8\xA7\xD9\x82...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/04/05/\xD8\xA7\xD9\x82...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/04/05/\xD8\xA7\xD9\x82...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 36), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2018/06/5b2695d7fc7e93d11e8b45a4-600x337.jpg, Stored debug messages: 2024-01-04 12:18:30 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2018/06/5b2695d7fc7e93d11e8b45a4-600x337.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com), REMOTE_ADDR: 64.124.8.462ec5th4un0, REQUEST_URI: /wp-content/uploads/2018/06/5b2695d7fc7e93d11e8b45a4-600x337.jpg 2024-01-04 12:18:31 PST (DEBUG): No posts or pages matching slug: 5b2695d7fc7e93d11e8b45a4-600x337.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (435.4 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(36, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(36) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('5b2695d7fc7e93d...', 'wp content uplo...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '5b2695d7fc7e93d...', 'wp content uplo...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/04/13/%D9%81%D9%8A%D8%B3%D8%A8%D9%88%D9%83-%D9%81%D9%8A-%D9%88%D8%B1%D8%B7%D8%A9-%D9%83%D8%A8%D9%8A%D8%B1%D8%A9-%D9%86%D8%B4%D8%B1-%D8%B5%D9%88%D8%B1-%D9%83%D8%B1%D8%AA%D9%88%D9%86%D9%8A%D8%A9-%D8%A5/kaiyun-168.com, Stored debug messages: 2024-01-04 12:21:09 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2017/04/13/فيسبوك-في-ورطة-كبيرة-نشر-صور-كرتونية-إ/kaiyun-168.com 2024-01-04 12:21:09 PST (DEBUG): Processing 404 for URL: /2017/04/13/فيسبوك-في-ورطة-كبيرة-نشر-صور-كرتونية-إ/kaiyun-168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2017/04/13/فيسبوك-في-ورطة-كبيرة-نشر-صور-كرتونية-إ/kaiyun-168.com 2024-01-04 12:21:10 PST (DEBUG): No posts or pages matching slug: kaiyun-168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (275.8 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaiyun 168 com', '2017 04 13 \xD9\x81\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaiyun 168 com', '2017 04 13 \xD9\x81\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/04/13/\xD9\x81\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/04/13/\xD9\x81\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/10/07/%D9%85%D8%AD%D9%85%D8%AF-%D8%B9%D9%84%D9%8A-%D9%8A%D9%83%D8%B4%D9%81-%D8%A7%D9%84%D8%AE%D8%B7%D8%A9-%D8%A7%D9%84%D8%AC%D9%87%D9%86%D9%85%D9%8A%D8%A9-%D8%A7%D9%84%D8%AA/bdtiyu168.com, Stored debug messages: 2024-01-04 12:18:57 PST (DEBUG): Processing 404 for URL: /2019/10/07/محمد-علي-يكشف-الخطة-الجهنمية-الت/bdtiyu168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com), REMOTE_ADDR: 216.244.66.3gbsgn50q6d0, REQUEST_URI: /2019/10/07/محمد-علي-يكشف-الخطة-الجهنمية-الت/bdtiyu168.com 2024-01-04 12:18:58 PST (DEBUG): No posts or pages matching slug: bdtiyu168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (408.04 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('bdtiyu168 com', '2019 10 07 \xD9\x85\xD8\xAD...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'bdtiyu168 com', '2019 10 07 \xD9\x85\xD8\xAD...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/10/07/\xD9\x85\xD8\xAD...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/10/07/\xD9\x85\xD8\xAD...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 8), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/09/29/%D9%85%D9%88%D9%82%D9%81-%D9%85%D8%B1%D8%AC%D8%B9%D9%8A%D8%A9-%D8%A7%D9%84%D9%86%D8%AC%D9%81-%D9%85%D9%86-%D8%A5%D8%B3%D8%AA%D9%81%D8%AA%D8%A7%D8%A1-%D8%A7%D9%84%D8%A8%D8%B1%D8%B2%D8%A7%D9%86%D9%8A/agzl.net, Stored debug messages: 2024-01-04 12:21:46 PST (DEBUG): Processing 404 for URL: /2017/09/29/موقف-مرجعية-النجف-من-إستفتاء-البرزاني/agzl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.56.4dbqanuaboi0, REQUEST_URI: /2017/09/29/موقف-مرجعية-النجف-من-إستفتاء-البرزاني/agzl.net 2024-01-04 12:21:47 PST (DEBUG): No posts or pages matching slug: agzl.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (239.16 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(8, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(8) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzl net', '2017 09 29 \xD9\x85\xD9\x88...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzl net', '2017 09 29 \xD9\x85\xD9\x88...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/09/29/\xD9\x85\xD9\x88...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/09/29/\xD9\x85\xD9\x88...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 17), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/06/20/%D8%AA%D8%B7%D9%88%D8%B1%D8%A7%D8%AA-%D8%AC%D8%AF%D9%8A%D8%AF%D8%A9-%D9%81%D9%8A-%D9%82%D8%B6%D9%8A%D8%A9-%D8%A7%D9%84%D9%81%D8%AA%D9%86%D8%A9-%D8%A8%D8%A7%D9%84%D8%A3%D8%B1%D8%AF%D9%86/jiangnanty188.com, Stored debug messages: 2024-01-04 12:20:25 PST (DEBUG): Processing 404 for URL: /2021/06/20/تطورات-جديدة-في-قضية-الفتنة-بالأردن/jiangnanty188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.37.4g7jki4nua80, REQUEST_URI: /2021/06/20/تطورات-جديدة-في-قضية-الفتنة-بالأردن/jiangnanty188.com 2024-01-04 12:20:26 PST (DEBUG): No posts or pages matching slug: jiangnanty188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (320.39 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(17, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(17) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('jiangnanty188 c...', '2021 06 20 \xD8\xAA\xD8\xB7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'jiangnanty188 c...', '2021 06 20 \xD8\xAA\xD8\xB7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/06/20/\xD8\xAA\xD8\xB7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/06/20/\xD8\xAA\xD8\xB7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 8), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/10/12/%D9%85%D8%B3%D8%A4%D9%88%D9%84-%D9%82%D8%B7%D8%B1%D9%8A-%D9%8A%D8%B9%D9%84%D9%82-%D8%B9%D9%84%D9%89-%D9%82%D8%B1%D8%A7%D8%B1-%D8%AC%D8%A7%D9%85%D8%B9%D8%A9-%D8%A7%D9%84%D8%AF%D9%88%D9%84/pmzr.org, Stored debug messages: 2024-01-04 12:19:47 PST (DEBUG): Processing 404 for URL: /2019/10/12/مسؤول-قطري-يعلق-على-قرار-جامعة-الدول/pmzr.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com), REMOTE_ADDR: 216.244.66.3gbsgn50q6d0, REQUEST_URI: /2019/10/12/مسؤول-قطري-يعلق-على-قرار-جامعة-الدول/pmzr.org 2024-01-04 12:19:48 PST (DEBUG): No posts or pages matching slug: pmzr.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (357.97 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(8, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(8) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pmzr org', '2019 10 12 \xD9\x85\xD8\xB3...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pmzr org', '2019 10 12 \xD9\x85\xD8\xB3...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/10/12/\xD9\x85\xD8\xB3...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/10/12/\xD9\x85\xD8\xB3...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 8), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/08/04/%D9%86%D8%B1%D9%85%D9%8A%D9%86-%D8%A7%D9%84%D9%81%D9%82%D9%8A-%D8%AA%D8%AD%D8%B3%D9%85-%D8%A7%D9%84%D8%AC%D8%AF%D9%84-%D8%AD%D9%88%D9%84-%D8%B9%D9%85%D8%B1%D9%87%D8%A7-%D8%A7%D9%84%D8%AD%D9%82%D9%8A/agzl.net, Stored debug messages: 2024-01-04 12:21:13 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/08/04/نرمين-الفقي-تحسم-الجدل-حول-عمرها-الحقي/agzl.net 2024-01-04 12:21:13 PST (DEBUG): Processing 404 for URL: /2022/08/04/نرمين-الفقي-تحسم-الجدل-حول-عمرها-الحقي/agzl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2022/08/04/نرمين-الفقي-تحسم-الجدل-حول-عمرها-الحقي/agzl.net 2024-01-04 12:21:14 PST (DEBUG): No posts or pages matching slug: agzl.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (271.91 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(8, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(8) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzl net', '2022 08 04 \xD9\x86\xD8\xB1...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzl net', '2022 08 04 \xD9\x86\xD8\xB1...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/08/04/\xD9\x86\xD8\xB1...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/08/04/\xD9\x86\xD8\xB1...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 8), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/03/31/%D8%B1%D8%AC%D8%A7%D9%84-%D8%A7%D9%84%D8%A3%D9%85%D9%86-%D8%A7%D9%84%D8%A3%D8%B1%D8%AF%D9%86%D9%8A/imty.org, Stored debug messages: 2024-01-04 12:23:22 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2020/03/31/رجال-الأمن-الأردني/imty.org 2024-01-04 12:23:22 PST (DEBUG): Processing 404 for URL: /2020/03/31/رجال-الأمن-الأردني/imty.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2020/03/31/رجال-الأمن-الأردني/imty.org 2024-01-04 12:23:23 PST (DEBUG): No posts or pages matching slug: imty.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (142.88 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(8, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(8) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('imty org', '2020 03 31 \xD8\xB1\xD8\xAC...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'imty org', '2020 03 31 \xD8\xB1\xD8\xAC...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/03/31/\xD8\xB1\xD8\xAC...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/03/31/\xD8\xB1\xD8\xAC...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 30), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /www.watanserb.com/wp-content/uploads/2022/03/%D8%A7%D9%84%D8%B4%D9%87%D9%8A%D8%AF-%D8%B9%D9%85%D8%A7%D8%B1-%D8%B4%D9%81%D9%8A%D9%82-%D8%A7%D8%A8%D9%88-%D8%B9%D9%81%D9%8A%D9%81%D8%A9.jpg, Stored debug messages: 2024-01-04 12:19:12 PST (DEBUG): Processing 404 for URL: /www.watanserb.com/wp-content/uploads/2022/03/الشهيد-عمار-شفيق-ابو-عفيفة.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Dalvik/2.1.0 (Linux; U; Android 12; SM-A525F Build/SP1A.210812.016), REMOTE_ADDR: 109.74.192.3ulfhq2p4vvg, REQUEST_URI: /www.watanserb.com/wp-content/uploads/2022/03/الشهيد-عمار-شفيق-ابو-عفيفة.jpg 2024-01-04 12:19:13 PST (DEBUG): No posts or pages matching slug: الشهيد-عمار-شفيق-ابو-عفيفة.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (393.2 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(30, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(30) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xA7\xD9\x84\xD8\xB4\xD9\x87\xD9\x8A\xD8\xAF \xD8\xB9...', 'www watanserb c...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xA7\xD9\x84\xD8\xB4\xD9\x87\xD9\x8A\xD8\xAF \xD8\xB9...', 'www watanserb c...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('www.watanserb.c...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('www.watanserb.c...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/05/31/%D8%A2%D9%84-%D8%A8%D8%A7%D8%AA%D8%B4%D9%8A%D9%86%D9%88-%D9%8A%D9%86%D8%AA%D8%B8%D8%B1-%D8%B7%D9%81%D9%84%D8%A7%D9%8B-%D9%85%D9%86-%D8%B5%D8%AF%D9%8A%D9%82%D8%AA%D9%87-%D8%A7%D9%84%D9%83%D9%88%D9%8A/agzr188.com, Stored debug messages: 2024-01-04 12:24:03 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /2023/05/31/آل-باتشينو-ينتظر-طفلاً-من-صديقته-الكوي/agzr188.com 2024-01-04 12:24:03 PST (DEBUG): Processing 404 for URL: /2023/05/31/آل-باتشينو-ينتظر-طفلاً-من-صديقته-الكوي/agzr188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /2023/05/31/آل-باتشينو-ينتظر-طفلاً-من-صديقته-الكوي/agzr188.com 2024-01-04 12:24:04 PST (DEBUG): No posts or pages matching slug: agzr188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (102.06 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzr188 com', '2023 05 31 \xD8\xA2\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzr188 com', '2023 05 31 \xD8\xA2\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/05/31/\xD8\xA2\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/05/31/\xD8\xA2\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/03/18/%D9%86%D8%B5%D9%8A%D8%B1-%D8%A7%D9%84%D8%B9%D9%85%D8%B1%D9%8A-%D9%8A%D8%A7-%D8%A3%D8%B5%D8%AD%D8%A7%D8%A8-%D8%A7%D9%84%D9%81%D9%83%D8%B1-%D8%A7%D9%84%D9%82%D9%85%D8%B9%D9%8A-%D8%A3%D9%82%D9%8A/kaifayl.com, Stored debug messages: 2024-01-04 12:24:10 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/03/18/نصير-العمري-يا-أصحاب-الفكر-القمعي-أقي/kaifayl.com 2024-01-04 12:24:11 PST (DEBUG): Processing 404 for URL: /2016/03/18/نصير-العمري-يا-أصحاب-الفكر-القمعي-أقي/kaifayl.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2016/03/18/نصير-العمري-يا-أصحاب-الفكر-القمعي-أقي/kaifayl.com 2024-01-04 12:24:11 PST (DEBUG): No posts or pages matching slug: kaifayl.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (94.66 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaifayl com', '2016 03 18 \xD9\x86\xD8\xB5...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaifayl com', '2016 03 18 \xD9\x86\xD8\xB5...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/03/18/\xD9\x86\xD8\xB5...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/03/18/\xD9\x86\xD8\xB5...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 15), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tag/%D8%B5%D9%84%D8%A7%D8%AD-%D8%B9%D8%A8%D8%AF-%D8%A7%D9%84%D8%AD%D9%85%D9%8A%D8%AF/, Stored debug messages: 2024-01-04 12:20:49 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /tag/صلاح-عبد-الحميد/ 2024-01-04 12:20:49 PST (DEBUG): Processing 404 for URL: /tag/صلاح-عبد-الحميد/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /tag/صلاح-عبد-الحميد/ 2024-01-04 12:20:50 PST (DEBUG): No posts or pages matching slug: صلاح-عبد-الحميد 2024-01-04 12:25:46 PST (DEBUG): Slow query (296.27 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(15, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(15) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xB5\xD9\x84\xD8\xA7\xD8\xAD \xD8\xB9\xD8\xA8\xD8\xAF...', 'tag \xD8\xB5\xD9\x84\xD8\xA7\xD8\xAD \xD8\xB9...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xB5\xD9\x84\xD8\xA7\xD8\xAD \xD8\xB9\xD8\xA8\xD8\xAF...', 'tag \xD8\xB5\xD9\x84\xD8\xA7\xD8\xAD \xD8\xB9...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tag/\xD8\xB5\xD9\x84\xD8\xA7\xD8\xAD-\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tag/\xD8\xB5\xD9\x84\xD8\xA7\xD8\xAD-\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 67), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /www.watanserb.com/wp-content/uploads/2022/03/%D8%B1%D9%8A%D8%A7%D8%B6-%D9%85%D8%AD%D8%B1%D8%B2-%D9%88%D8%A8%D9%86%D8%A7%D8%A1-%D9%85%D8%B3%D8%AC%D8%AF-%D9%81%D9%8A-%D9%88%D9%84%D8%A7%D9%8A%D8%A9-%D8%A8%D9%84%D9%85%D8%B3%D8%A7%D9%86-%D9%85%D8%B3%D9%82%D8%B7-%D8%B1%D8%A7%D8%B3-%D8%A7%D9%84%D9%84%D8%A7%D8%B9%D8%A8-%D9%81%D9%8A-%D8%A7%D9%84%D8%AC%D8%B2%D8%A7%D8%A6%D8%B1.jpg, Stored debug messages: 2024-01-04 12:22:01 PST (DEBUG): Processing 404 for URL: /www.watanserb.com/wp-content/uploads/2022/03/رياض-محرز-وبناء-مسجد-في-ولاية-بلمسان-مسقط-راس-اللاعب-في-الجزائر.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Dalvik/2.1.0 (Linux; U; Android 12; SM-A525F Build/SP1A.210812.016), REMOTE_ADDR: 109.74.192.3ulfhq2p4vvg, REQUEST_URI: /www.watanserb.com/wp-content/uploads/2022/03/رياض-محرز-وبناء-مسجد-في-ولاية-بلمسان-مسقط-راس-اللاعب-في-الجزائر.jpg 2024-01-04 12:22:02 PST (DEBUG): No posts or pages matching slug: رياض-محرز-وبناء-مسجد-في-ولاية-بلمسان-مسقط-راس-اللاعب-في-الجزائر.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (223.71 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(67, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(67) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xB1\xD9\x8A\xD8\xA7\xD8\xB6 \xD9\x85\xD8\xAD\xD8\xB1...', 'www watanserb c...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xB1\xD9\x8A\xD8\xA7\xD8\xB6 \xD9\x85\xD8\xAD\xD8\xB1...', 'www watanserb c...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('www.watanserb.c...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('www.watanserb.c...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 15), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/03/14/%D8%AC%D9%8A%D9%87%D8%A7%D9%86-%D9%81%D8%A7%D8%B6%D9%84-%D9%85%D8%AA%D9%87%D9%85%D8%A9-%D8%A8%D9%82%D9%84%D8%A8-%D9%86%D8%B8%D8%A7%D9%85-%D8%A7%D9%84%D8%AD%D9%83%D9%85/huatihui188.com, Stored debug messages: 2024-01-04 12:21:26 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/03/14/جيهان-فاضل-متهمة-بقلب-نظام-الحكم/huatihui188.com 2024-01-04 12:21:26 PST (DEBUG): Processing 404 for URL: /2016/03/14/جيهان-فاضل-متهمة-بقلب-نظام-الحكم/huatihui188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2016/03/14/جيهان-فاضل-متهمة-بقلب-نظام-الحكم/huatihui188.com 2024-01-04 12:21:27 PST (DEBUG): No posts or pages matching slug: huatihui188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (259.16 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(15, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(15) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('huatihui188 com', '2016 03 14 \xD8\xAC\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'huatihui188 com', '2016 03 14 \xD8\xAC\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/03/14/\xD8\xAC\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/03/14/\xD8\xAC\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/10/02/%D8%B1%D8%AC%D9%84-%D8%A7%D9%84%D8%AE%D9%85%D9%88%D8%B1-%D8%AE%D9%84%D9%81-%D8%A7%D9%84%D8%AD%D8%A8%D8%AA%D9%88%D8%B1-%D8%A8%D8%B9%D8%AF-%D8%A3%D9%86-%D8%B0%D8%A7%D9%82-%D8%AD%D9%84%D8%A7%D9%88%D8%A9/xcai188.com, Stored debug messages: 2024-01-04 12:23:58 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2020/10/02/رجل-الخمور-خلف-الحبتور-بعد-أن-ذاق-حلاوة/xcai188.com 2024-01-04 12:23:59 PST (DEBUG): Processing 404 for URL: /2020/10/02/رجل-الخمور-خلف-الحبتور-بعد-أن-ذاق-حلاوة/xcai188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.18jnvgepktf8, REQUEST_URI: /2020/10/02/رجل-الخمور-خلف-الحبتور-بعد-أن-ذاق-حلاوة/xcai188.com 2024-01-04 12:23:59 PST (DEBUG): No posts or pages matching slug: xcai188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (106.69 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('xcai188 com', '2020 10 02 \xD8\xB1\xD8\xAC...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'xcai188 com', '2020 10 02 \xD8\xB1\xD8\xAC...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/10/02/\xD8\xB1\xD8\xAC...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/10/02/\xD8\xB1\xD8\xAC...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 16), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /www.watanserb.com/wp-content/uploads/2022/03/%D8%A8%D8%A7%D9%8A%D8%AF%D9%86-%D9%88%D8%A8%D9%88%D8%AA%D9%8A%D9%86.jpg, Stored debug messages: 2024-01-04 12:22:01 PST (DEBUG): Processing 404 for URL: /www.watanserb.com/wp-content/uploads/2022/03/بايدن-وبوتين.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Dalvik/2.1.0 (Linux; U; Android 12; SM-A525F Build/SP1A.210812.016), REMOTE_ADDR: 109.74.192.3ulfhq2p4vvg, REQUEST_URI: /www.watanserb.com/wp-content/uploads/2022/03/بايدن-وبوتين.jpg 2024-01-04 12:22:02 PST (DEBUG): No posts or pages matching slug: بايدن-وبوتين.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (223.99 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(16, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(16) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xA8\xD8\xA7\xD9\x8A\xD8\xAF\xD9\x86 \xD9\x88\xD8\xA8...', 'www watanserb c...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xA8\xD8\xA7\xD9\x8A\xD8\xAF\xD9\x86 \xD9\x88\xD8\xA8...', 'www watanserb c...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('www.watanserb.c...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('www.watanserb.c...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/02/24/%D8%AF%D9%88%D8%B1%D9%8A-%D8%A3%D8%A8%D8%B7%D8%A7%D9%84-%D8%A3%D9%81%D8%B1%D9%8A%D9%82%D9%8A%D8%A7-2023-%D8%A7%D9%84%D9%88%D8%AF%D8%A7%D8%AF-%D9%88%D8%A7%D9%84%D9%87%D9%84%D8%A7%D9%84-%D9%8A%D9%81/agzr188.com, Stored debug messages: 2024-01-04 12:20:09 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 for URL: /2023/02/24/دوري-أبطال-أفريقيا-2023-الوداد-والهلال-يف/agzr188.com 2024-01-04 12:20:09 PST (DEBUG): Processing 404 for URL: /2023/02/24/دوري-أبطال-أفريقيا-2023-الوداد-والهلال-يف/agzr188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0, REMOTE_ADDR: 213.180.203.1k2sub73o7v0, REQUEST_URI: /2023/02/24/دوري-أبطال-أفريقيا-2023-الوداد-والهلال-يف/agzr188.com 2024-01-04 12:20:10 PST (DEBUG): No posts or pages matching slug: agzr188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (336.43 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzr188 com', '2023 02 24 \xD8\xAF\xD9\x88...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzr188 com', '2023 02 24 \xD8\xAF\xD9\x88...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/02/24/\xD8\xAF\xD9\x88...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/02/24/\xD8\xAF\xD9\x88...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 17), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2018/09/%D8%A8%D8%AF%D9%88%D9%86-%D8%B9%D9%86%D9%88%D8%A7%D9%86-58.png, Stored debug messages: 2024-01-04 12:23:21 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2018/09/بدون-عنوان-58.png | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Windows NT 5.1; rv:11.0) Gecko Firefox/11.0 (via ggpht.com GoogleImageProxy), REMOTE_ADDR: 66.249.88.3krc90u2keb0, REQUEST_URI: /wp-content/uploads/2018/09/بدون-عنوان-58.png 2024-01-04 12:23:21 PST (DEBUG): No posts or pages matching slug: بدون-عنوان-58.png 2024-01-04 12:25:46 PST (DEBUG): Slow query (144.55 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(17, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(17) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xA8\xD8\xAF\xD9\x88\xD9\x86 \xD8\xB9\xD9\x86\xD9\x88...', 'wp content uplo...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xA8\xD8\xAF\xD9\x88\xD9\x86 \xD8\xB9\xD9\x86\xD9\x88...', 'wp content uplo...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 17), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /wp-content/uploads/2018/05/%D9%85%D9%87%D8%A7%D8%AA%D9%8A%D8%B1-%D9%85%D8%AD%D9%85%D8%AF-1.jpg, Stored debug messages: 2024-01-04 12:18:20 PST (DEBUG): Ignoring user agent (process ok): facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php) for URL: /wp-content/uploads/2018/05/مهاتير-محمد-1.jpg 2024-01-04 12:18:20 PST (DEBUG): Processing 404 for URL: /wp-content/uploads/2018/05/مهاتير-محمد-1.jpg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php), REMOTE_ADDR: 2a03:2880:30ff:7cpf47siqss0, REQUEST_URI: /wp-content/uploads/2018/05/مهاتير-محمد-1.jpg 2024-01-04 12:18:21 PST (DEBUG): No posts or pages matching slug: مهاتير-محمد-1.jpg 2024-01-04 12:25:46 PST (DEBUG): Slow query (444.94 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(17, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(17) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD9\x85\xD9\x87\xD8\xA7\xD8\xAA\xD9\x8A\xD8\xB1 \xD9\x85...', 'wp content uplo...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD9\x85\xD9\x87\xD8\xA7\xD8\xAA\xD9\x8A\xD8\xB1 \xD9\x85...', 'wp content uplo...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('wp-content/uplo...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('wp-content/uplo...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/10/16/%D8%B3%D9%85%D9%8A%D8%A9-%D8%A7%D9%84%D8%AE%D8%B4%D8%A7%D8%A8-%D9%81%D9%8A-%D9%81%D9%8A%D8%AF%D9%8A%D9%88-%D8%B1%D9%82%D8%B5-%D9%85%D8%AB%D9%8A%D8%B1-%D8%A8%D9%85%D9%87%D8%B1%D8%AC%D8%A7%D9%86-%D8%A7/xcai168.net, Stored debug messages: 2024-01-04 12:19:35 PST (DEBUG): Processing 404 for URL: /2021/10/16/سمية-الخشاب-في-فيديو-رقص-مثير-بمهرجان-ا/xcai168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.119.3imcl1utabk0, REQUEST_URI: /2021/10/16/سمية-الخشاب-في-فيديو-رقص-مثير-بمهرجان-ا/xcai168.net 2024-01-04 12:19:35 PST (DEBUG): No posts or pages matching slug: xcai168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (370.61 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('xcai168 net', '2021 10 16 \xD8\xB3\xD9\x85...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'xcai168 net', '2021 10 16 \xD8\xB3\xD9\x85...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/10/16/\xD8\xB3\xD9\x85...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/10/16/\xD8\xB3\xD9\x85...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 20), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/11/25/%D9%83%D8%A7%D8%AA%D8%A8-%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D9%84%D9%88-%D9%81%D8%AA%D8%AD%D8%AA-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A%D8%A9-%D8%A8%D8%A7%D8%A8-%D8%A7%D9%84%D8%AA%D8%AC%D9%86%D9%8A/ag-zunlongkaishi.net, Stored debug messages: 2024-01-04 12:18:28 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/11/25/كاتب-سعودي-لو-فتحت-السعودية-باب-التجني/ag-zunlongkaishi.net 2024-01-04 12:18:28 PST (DEBUG): Processing 404 for URL: /2018/11/25/كاتب-سعودي-لو-فتحت-السعودية-باب-التجني/ag-zunlongkaishi.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2018/11/25/كاتب-سعودي-لو-فتحت-السعودية-باب-التجني/ag-zunlongkaishi.net 2024-01-04 12:18:29 PST (DEBUG): No posts or pages matching slug: ag-zunlongkaishi.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (436.96 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(20, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(20) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('ag zunlongkaish...', '2018 11 25 \xD9\x83\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'ag zunlongkaish...', '2018 11 25 \xD9\x83\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/11/25/\xD9\x83\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/11/25/\xD9\x83\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/10/09/%D9%82%D8%A7%D8%AA%D9%84-%D9%8A%D9%83%D8%B1%D9%85-%D8%A7%D9%84%D9%85%D9%81%D8%AA%D9%8A-%D9%88%D8%AD%D8%B3%D9%88%D9%86-%D8%A8%D8%B9%D8%AF-%D8%A7%D9%86-%D9%85%D8%B3%D9%87-%D8%A7%D9%84%D9%86%D9%88/kaifayl.com%22, Stored debug messages: 2024-01-04 12:22:40 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/10/09/قاتل-يكرم-المفتي-وحسون-بعد-ان-مسه-النو/kaifayl.com 2024-01-04 12:22:40 PST (DEBUG): Processing 404 for URL: /2016/10/09/قاتل-يكرم-المفتي-وحسون-بعد-ان-مسه-النو/kaifayl.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /2016/10/09/قاتل-يكرم-المفتي-وحسون-بعد-ان-مسه-النو/kaifayl.com" 2024-01-04 12:22:41 PST (DEBUG): No posts or pages matching slug: kaifayl.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (185.12 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaifayl com', '2016 10 09 \xD9\x82\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaifayl com', '2016 10 09 \xD9\x82\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/10/09/\xD9\x82\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/10/09/\xD9\x82\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/02/07/%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D9%8A%D9%82%D8%AA%D8%AD%D9%85-%D9%85%D8%B1%D9%82%D8%B5%D8%A7%D9%8B-%D8%A8%D8%AC%D8%A7%D9%86%D8%A8-%D9%85%D9%86%D8%B2%D9%84%D9%87/kaifayl.net, Stored debug messages: 2024-01-04 12:18:39 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2020/02/07/سعودي-يقتحم-مرقصاً-بجانب-منزله/kaifayl.net 2024-01-04 12:18:39 PST (DEBUG): Processing 404 for URL: /2020/02/07/سعودي-يقتحم-مرقصاً-بجانب-منزله/kaifayl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2020/02/07/سعودي-يقتحم-مرقصاً-بجانب-منزله/kaifayl.net 2024-01-04 12:18:40 PST (DEBUG): No posts or pages matching slug: kaifayl.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (426.27 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaifayl net', '2020 02 07 \xD8\xB3\xD8\xB9...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaifayl net', '2020 02 07 \xD8\xB3\xD8\xB9...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/02/07/\xD8\xB3\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/02/07/\xD8\xB3\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/08/07/%D8%AF%D8%A8%D9%84%D9%88%D9%85%D8%A7%D8%B3%D9%8A-%D8%AC%D8%B2%D8%A7%D8%A6%D8%B1%D9%8A-%D8%A5%D8%B3%D8%B1%D8%A7%D8%A6%D9%8A%D9%84-%D9%82%D8%AF-%D8%AA%D8%AA%D8%AF%D8%AE%D9%84-%D9%84%D8%AD%D9%85%D8%A7/aiyouxi168.net, Stored debug messages: 2024-01-04 12:21:40 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/08/07/دبلوماسي-جزائري-إسرائيل-قد-تتدخل-لحما/aiyouxi168.net 2024-01-04 12:21:40 PST (DEBUG): Processing 404 for URL: /2016/08/07/دبلوماسي-جزائري-إسرائيل-قد-تتدخل-لحما/aiyouxi168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /2016/08/07/دبلوماسي-جزائري-إسرائيل-قد-تتدخل-لحما/aiyouxi168.net 2024-01-04 12:21:41 PST (DEBUG): No posts or pages matching slug: aiyouxi168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (244.91 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('aiyouxi168 net', '2016 08 07 \xD8\xAF\xD8\xA8...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'aiyouxi168 net', '2016 08 07 \xD8\xAF\xD8\xA8...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/08/07/\xD8\xAF\xD8\xA8...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/08/07/\xD8\xAF\xD8\xA8...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 35), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/01/%D8%B4%D8%A7%D9%87%D8%AF-%D8%A7%D8%BA%D8%AA%D9%8A%D8%A7%D9%84-%D8%A7%D9%84%D8%B3%D9%81%D9%8A%D8%B1-%D8%A7%D9%84%D8%B1%D9%88%D8%B3%D9%8A-%D9%88%D9%87%D8%AC%D9%88%D9%85-%D8%A7%D9%84%D9%85/, Stored debug messages: 2024-01-04 12:21:02 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /2017/01/شاهد-اغتيال-السفير-الروسي-وهجوم-الم/ 2024-01-04 12:21:02 PST (DEBUG): Processing 404 for URL: /2017/01/شاهد-اغتيال-السفير-الروسي-وهجوم-الم/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 66.249.69.5td1ntcg5uj0, REQUEST_URI: /2017/01/شاهد-اغتيال-السفير-الروسي-وهجوم-الم/ 2024-01-04 12:21:03 PST (DEBUG): No posts or pages matching slug: شاهد-اغتيال-السفير-الروسي-وهجوم-الم 2024-01-04 12:25:46 PST (DEBUG): Slow query (283.43 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(35, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(35) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xB4\xD8\xA7\xD9\x87\xD8\xAF \xD8\xA7\xD8\xBA\xD8\xAA...', '2017 01 \xD8\xB4\xD8\xA7\xD9\x87\xD8...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xB4\xD8\xA7\xD9\x87\xD8\xAF \xD8\xA7\xD8\xBA\xD8\xAA...', '2017 01 \xD8\xB4\xD8\xA7\xD9\x87\xD8...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/01/\xD8\xB4\xD8\xA7\xD9\x87\xD8...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/01/\xD8\xB4\xD8\xA7\xD9\x87\xD8...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 4), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /latest/tag/%D9%85%D8%AD%D9%85%D8%AF-%D8%A7%D9%84%D9%81%D8%B2%D8%A7%D8%B1%D9%8A/feed/, Stored debug messages: 2024-01-04 12:19:30 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /latest/tag/محمد-الفزاري/feed/ 2024-01-04 12:19:30 PST (DEBUG): Processing 404 for URL: /latest/tag/محمد-الفزاري/feed/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /latest/tag/محمد-الفزاري/feed/ 2024-01-04 12:19:31 PST (DEBUG): No posts or pages matching slug: feed 2024-01-04 12:25:46 PST (DEBUG): Slow query (375.19 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(4, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(4) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('feed', 'latest tag \xD9\x85\xD8\xAD...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'feed', 'latest tag \xD9\x85\xD8\xAD...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('latest/tag/\xD9\x85\xD8\xAD...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('latest/tag/\xD9\x85\xD8\xAD...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/01/02/%D9%87%D8%B0%D9%87-%D8%A3%D8%B5%D8%BA%D8%B1-%D8%AC%D8%AF%D8%A9-%D9%81%D9%8A-%D8%A7%D9%84%D8%B9%D8%A7%D9%84%D9%85-%D8%AA%D8%B9%D8%B1%D9%81%D9%88%D8%A7-%D8%B9%D9%84%D9%89-%D9%82%D8%B5%D8%AA%D9%87/bandaotiyu.ai, Stored debug messages: 2024-01-04 12:23:21 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2017/01/02/هذه-أصغر-جدة-في-العالم-تعرفوا-على-قصته/bandaotiyu.ai 2024-01-04 12:23:21 PST (DEBUG): Processing 404 for URL: /2017/01/02/هذه-أصغر-جدة-في-العالم-تعرفوا-على-قصته/bandaotiyu.ai | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /2017/01/02/هذه-أصغر-جدة-في-العالم-تعرفوا-على-قصته/bandaotiyu.ai 2024-01-04 12:23:22 PST (DEBUG): No posts or pages matching slug: bandaotiyu.ai 2024-01-04 12:25:46 PST (DEBUG): Slow query (144.24 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('bandaotiyu ai', '2017 01 02 \xD9\x87\xD8\xB0...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'bandaotiyu ai', '2017 01 02 \xD9\x87\xD8\xB0...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/01/02/\xD9\x87\xD8\xB0...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/01/02/\xD9\x87\xD8\xB0...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 16), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/05/16/%D9%85%D8%A7-%D9%82%D8%B5%D8%A9-%D8%A7%D9%84%D8%A7%D8%AD%D8%AA%D8%B6%D8%A7%D9%86-%D8%A8%D8%B4%D8%B1%D8%B7-%D8%A7%D9%84%D8%B1%D8%B6%D8%A7%D8%B9%D8%A9-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A%D8%A9/ag-baccarat.live, Stored debug messages: 2024-01-04 12:22:07 PST (DEBUG): Processing 404 for URL: /2021/05/16/ما-قصة-الاحتضان-بشرط-الرضاعة-السعودية/ag-baccarat.live | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html), REMOTE_ADDR: 185.191.171.4ruce7vs32i0, REQUEST_URI: /2021/05/16/ما-قصة-الاحتضان-بشرط-الرضاعة-السعودية/ag-baccarat.live 2024-01-04 12:22:08 PST (DEBUG): No posts or pages matching slug: ag-baccarat.live 2024-01-04 12:25:46 PST (DEBUG): Slow query (218.46 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(16, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(16) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('ag baccarat liv...', '2021 05 16 \xD9\x85\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'ag baccarat liv...', '2021 05 16 \xD9\x85\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/05/16/\xD9\x85\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/05/16/\xD9\x85\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/08/20/%D8%AD%D8%B3%D9%86-%D9%86%D8%B5%D8%B1-%D8%A7%D9%84%D9%84%D9%87-%D8%A3%D9%81%D8%B4%D9%84%D9%86%D8%A7-%D9%85%D8%B4%D8%B1%D9%88%D8%B9-%D9%83%D9%88%D9%86%D8%AF%D9%88%D9%84%D9%8A%D8%B2%D8%A7-%D8%B1/hgty188.net, Stored debug messages: 2024-01-04 12:21:52 PST (DEBUG): Processing 404 for URL: /2016/08/20/حسن-نصر-الله-أفشلنا-مشروع-كوندوليزا-ر/hgty188.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.56.7s489git3020, REQUEST_URI: /2016/08/20/حسن-نصر-الله-أفشلنا-مشروع-كوندوليزا-ر/hgty188.net 2024-01-04 12:21:53 PST (DEBUG): No posts or pages matching slug: hgty188.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (233.49 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('hgty188 net', '2016 08 20 \xD8\xAD\xD8\xB3...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'hgty188 net', '2016 08 20 \xD8\xAD\xD8\xB3...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/08/20/\xD8\xAD\xD8\xB3...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/08/20/\xD8\xAD\xD8\xB3...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/03/02/%D8%B4%D8%AA%D8%A7%D8%A1-%D9%86%D9%88%D9%88%D9%8A-%D9%83%D9%8A%D9%81-%D9%8A%D9%85%D9%83%D9%86-%D9%84%D8%AD%D8%B1%D8%A8-%D8%B9%D8%A7%D9%84%D9%85%D9%8A%D8%A9-%D8%AB%D8%A7%D9%84%D8%AB%D8%A9-%D8%A3/jnty168.net, Stored debug messages: 2024-01-04 12:24:08 PST (DEBUG): Processing 404 for URL: /2022/03/02/شتاء-نووي-كيف-يمكن-لحرب-عالمية-ثالثة-أ/jnty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.64p913h85p40, REQUEST_URI: /2022/03/02/شتاء-نووي-كيف-يمكن-لحرب-عالمية-ثالثة-أ/jnty168.net 2024-01-04 12:24:09 PST (DEBUG): No posts or pages matching slug: jnty168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (97.29 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('jnty168 net', '2022 03 02 \xD8\xB4\xD8\xAA...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'jnty168 net', '2022 03 02 \xD8\xB4\xD8\xAA...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/03/02/\xD8\xB4\xD8\xAA...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/03/02/\xD8\xB4\xD8\xAA...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 15), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/02/14/%D9%85%D9%81%D8%A7%D9%88%D8%B6%D8%A7%D8%AA-%D8%A7%D9%84%D8%B5%D9%84%D8%AD-%D8%A8%D9%8A%D9%86-%D9%82%D8%B7%D8%B1-%D9%88-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A%D8%A9/huatihui188.com, Stored debug messages: 2024-01-04 12:18:14 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /2020/02/14/مفاوضات-الصلح-بين-قطر-و-السعودية/huatihui188.com 2024-01-04 12:18:14 PST (DEBUG): Processing 404 for URL: /2020/02/14/مفاوضات-الصلح-بين-قطر-و-السعودية/huatihui188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 213.180.203.vu7f7eg05v40, REQUEST_URI: /2020/02/14/مفاوضات-الصلح-بين-قطر-و-السعودية/huatihui188.com 2024-01-04 12:18:15 PST (DEBUG): No posts or pages matching slug: huatihui188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (451.17 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(15, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(15) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('huatihui188 com', '2020 02 14 \xD9\x85\xD9\x81...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'huatihui188 com', '2020 02 14 \xD9\x85\xD9\x81...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/02/14/\xD9\x85\xD9\x81...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/02/14/\xD9\x85\xD9\x81...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 10), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/10/04/%D8%B5%D9%87%D9%8A%D8%A8-%D9%88%D8%AE%D8%AF%D9%8A%D8%AC%D8%A9-%D9%85%D8%B1%D8%A7%D9%87%D9%82%D8%A7%D9%86-%D9%85%D8%BA%D8%B1%D8%A8%D9%8A%D8%A7%D9%86-%D8%AA%D8%B2%D9%88%D9%91%D8%AC%D8%A7-%D9%88/mileyl.com, Stored debug messages: 2024-01-04 12:22:03 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2017/10/04/صهيب-وخديجة-مراهقان-مغربيان-تزوّجا-و/mileyl.com 2024-01-04 12:22:03 PST (DEBUG): Processing 404 for URL: /2017/10/04/صهيب-وخديجة-مراهقان-مغربيان-تزوّجا-و/mileyl.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /2017/10/04/صهيب-وخديجة-مراهقان-مغربيان-تزوّجا-و/mileyl.com 2024-01-04 12:22:04 PST (DEBUG): No posts or pages matching slug: mileyl.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (222.44 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(10, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(10) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('mileyl com', '2017 10 04 \xD8\xB5\xD9\x87...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'mileyl com', '2017 10 04 \xD8\xB5\xD9\x87...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/10/04/\xD8\xB5\xD9\x87...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/10/04/\xD8\xB5\xD9\x87...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/10/24/%D9%86%D8%AC%D9%8A%D8%A8-%D8%B3%D8%A7%D9%88%D9%8A%D8%B1%D8%B3-%D9%88%D9%84%D9%8A%D9%84%D9%8A%D8%A7%D9%86-%D8%AF%D8%A7%D9%88%D9%88%D8%AF/ag-zhenren.org, Stored debug messages: 2024-01-04 12:21:27 PST (DEBUG): Processing 404 for URL: /2019/10/24/نجيب-ساويرس-وليليان-داوود/ag-zhenren.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com), REMOTE_ADDR: 216.244.66.3gbsgn50q6d0, REQUEST_URI: /2019/10/24/نجيب-ساويرس-وليليان-داوود/ag-zhenren.org 2024-01-04 12:21:28 PST (DEBUG): No posts or pages matching slug: ag-zhenren.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (257.81 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('ag zhenren org', '2019 10 24 \xD9\x86\xD8\xAC...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'ag zhenren org', '2019 10 24 \xD9\x86\xD8\xAC...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/10/24/\xD9\x86\xD8\xAC...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/10/24/\xD9\x86\xD8\xAC...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2013/11/11/%D8%AD%D9%82%D9%8A%D9%82%D8%A9-%D9%84%D8%B9%D8%A8%D8%A9-%D8%A7%D9%84%D9%84%D9%8A%D8%B1%D8%A9-%D8%A7%D9%84%D8%B3%D9%88%D8%B1%D9%8A%D8%A9-%D9%88%D8%A7%D9%84%D8%AA%D8%B4%D8%A8%D9%8A%D8%AD-%D8%A7%D9%84/oubao168.org, Stored debug messages: 2024-01-04 12:20:52 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2013/11/11/حقيقة-لعبة-الليرة-السورية-والتشبيح-ال/oubao168.org 2024-01-04 12:20:52 PST (DEBUG): Processing 404 for URL: /2013/11/11/حقيقة-لعبة-الليرة-السورية-والتشبيح-ال/oubao168.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2013/11/11/حقيقة-لعبة-الليرة-السورية-والتشبيح-ال/oubao168.org 2024-01-04 12:20:53 PST (DEBUG): No posts or pages matching slug: oubao168.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (293.41 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('oubao168 org', '2013 11 11 \xD8\xAD\xD9\x82...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'oubao168 org', '2013 11 11 \xD8\xAD\xD9\x82...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2013/11/11/\xD8\xAD\xD9\x82...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2013/11/11/\xD8\xAD\xD9\x82...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/07/04/%D8%B7%D8%A7%D8%A6%D8%B1%D8%A9-%D9%85%D8%BA%D8%B1%D8%A8%D9%8A%D8%A9-%D8%AA%D8%B5%D9%84-%D9%82%D8%A7%D8%B9%D8%AF%D8%A9-%D8%AC%D9%88%D9%8A%D8%A9-%D8%A5%D8%B3%D8%B1%D8%A7%D8%A6%D9%8A%D9%84/yaxingtiyu.vip, Stored debug messages: 2024-01-04 12:20:25 PST (DEBUG): Processing 404 for URL: /2021/07/04/طائرة-مغربية-تصل-قاعدة-جوية-إسرائيل/yaxingtiyu.vip | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.37.55s00j4dpqe0, REQUEST_URI: /2021/07/04/طائرة-مغربية-تصل-قاعدة-جوية-إسرائيل/yaxingtiyu.vip 2024-01-04 12:20:26 PST (DEBUG): No posts or pages matching slug: yaxingtiyu.vip 2024-01-04 12:25:46 PST (DEBUG): Slow query (320.38 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('yaxingtiyu vip', '2021 07 04 \xD8\xB7\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'yaxingtiyu vip', '2021 07 04 \xD8\xB7\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/07/04/\xD8\xB7\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/07/04/\xD8\xB7\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 6), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tag/%D8%A7%D9%81%D8%A7%D9%86%D9%83%D8%A7/, Stored debug messages: 2024-01-04 12:21:16 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /tag/افانكا/ 2024-01-04 12:21:16 PST (DEBUG): Processing 404 for URL: /tag/افانكا/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /tag/افانكا/ 2024-01-04 12:21:16 PST (DEBUG): No posts or pages matching slug: افانكا 2024-01-04 12:25:46 PST (DEBUG): Slow query (269.69 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(6, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(6) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xA7\xD9\x81\xD8\xA7\xD9\x86\xD9\x83\xD8\xA7', 'tag \xD8\xA7\xD9\x81\xD8\xA7\xD9\x86\xD9\x83\xD8...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xA7\xD9\x81\xD8\xA7\xD9\x86\xD9\x83\xD8\xA7', 'tag \xD8\xA7\xD9\x81\xD8\xA7\xD9\x86\xD9\x83\xD8...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tag/\xD8\xA7\xD9\x81\xD8\xA7\xD9\x86\xD9\x83\xD8...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tag/\xD8\xA7\xD9\x81\xD8\xA7\xD9\x86\xD9\x83\xD8...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 17), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/12/24/%D8%B4%D8%A7%D9%87%D8%AF-%D8%A7%D8%AE%D8%AA%D8%B1%D8%A7%D9%82-%D8%AD%D8%B3%D8%A7%D8%A8-%D8%A7%D9%84%D9%81%D9%86%D8%A7%D9%86%D8%A9-%D8%A7%D9%84%D8%A5%D9%85%D8%A7%D8%B1%D8%A7%D8%AA%D9%8A%D8%A9-%D8%A8/jiangnantiyu.live, Stored debug messages: 2024-01-04 12:21:26 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /2018/12/24/شاهد-اختراق-حساب-الفنانة-الإماراتية-ب/jiangnantiyu.live 2024-01-04 12:21:26 PST (DEBUG): Processing 404 for URL: /2018/12/24/شاهد-اختراق-حساب-الفنانة-الإماراتية-ب/jiangnantiyu.live | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 213.180.203.4orjk3r9br00, REQUEST_URI: /2018/12/24/شاهد-اختراق-حساب-الفنانة-الإماراتية-ب/jiangnantiyu.live 2024-01-04 12:21:27 PST (DEBUG): No posts or pages matching slug: jiangnantiyu.live 2024-01-04 12:25:46 PST (DEBUG): Slow query (259.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(17, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(17) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('jiangnantiyu li...', '2018 12 24 \xD8\xB4\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'jiangnantiyu li...', '2018 12 24 \xD8\xB4\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/12/24/\xD8\xB4\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/12/24/\xD8\xB4\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 17), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/01/28/%D8%B4%D8%A7%D9%87%D8%AF-%D8%AC%D8%AF%D9%8A%D8%AF-%D9%81%D9%8A-%D9%82%D8%B6%D9%8A%D8%A9-%D8%AC%D9%88%D9%84%D9%8A%D9%88-%D8%B1%D9%8A%D8%AC%D9%8A%D9%86%D9%8A-%D9%8A%D8%A4%D8%B2%D9%85-%D9%85%D9%88%D9%82/jiangnanty188.com, Stored debug messages: 2024-01-04 12:17:42 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/01/28/شاهد-جديد-في-قضية-جوليو-ريجيني-يؤزم-موق/jiangnanty188.com 2024-01-04 12:17:42 PST (DEBUG): Processing 404 for URL: /2021/01/28/شاهد-جديد-في-قضية-جوليو-ريجيني-يؤزم-موق/jiangnanty188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7j83or3tire0, REQUEST_URI: /2021/01/28/شاهد-جديد-في-قضية-جوليو-ريجيني-يؤزم-موق/jiangnanty188.com 2024-01-04 12:17:43 PST (DEBUG): No posts or pages matching slug: jiangnanty188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (483.21 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(17, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(17) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('jiangnanty188 c...', '2021 01 28 \xD8\xB4\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'jiangnanty188 c...', '2021 01 28 \xD8\xB4\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/01/28/\xD8\xB4\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/01/28/\xD8\xB4\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/12/31/%D8%A7%D8%B3%D8%AA%D9%82%D8%B1%D8%A7%D8%B1-%D8%B5%D8%AD%D8%A9-%D8%A7%D9%84%D8%B3%D9%84%D8%B7%D8%A7%D9%86-%D9%82%D8%A7%D8%A8%D9%88%D8%B3/leyutiyu.co, Stored debug messages: 2024-01-04 12:17:54 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /2019/12/31/استقرار-صحة-السلطان-قابوس/leyutiyu.co 2024-01-04 12:17:54 PST (DEBUG): Processing 404 for URL: /2019/12/31/استقرار-صحة-السلطان-قابوس/leyutiyu.co | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 95.108.213.71cl11245q00, REQUEST_URI: /2019/12/31/استقرار-صحة-السلطان-قابوس/leyutiyu.co 2024-01-04 12:17:54 PST (DEBUG): No posts or pages matching slug: leyutiyu.co 2024-01-04 12:25:46 PST (DEBUG): Slow query (471.65 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('leyutiyu co', '2019 12 31 \xD8\xA7\xD8\xB3...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'leyutiyu co', '2019 12 31 \xD8\xA7\xD8\xB3...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/12/31/\xD8\xA7\xD8\xB3...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/12/31/\xD8\xA7\xD8\xB3...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 9), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/01/12/%D8%A8%D9%88%D9%85%D8%A8%D9%8A%D9%88-%D9%8A%D8%A8%D8%AA%D8%B2-%D8%A7%D9%84%D8%A3%D9%85%D9%8A%D8%B1-%D8%A7%D9%84%D8%B5%D8%BA%D9%8A%D8%B1-%D9%88%D9%8A%D8%B1%D8%A7%D9%88%D8%BA-%D9%85%D9%86-%D8%A3%D8%A8/j9jyh.net, Stored debug messages: 2024-01-04 12:21:24 PST (DEBUG): Processing 404 for URL: /2019/01/12/بومبيو-يبتز-الأمير-الصغير-ويراوغ-من-أب/j9jyh.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.116.16clulvu821o, REQUEST_URI: /2019/01/12/بومبيو-يبتز-الأمير-الصغير-ويراوغ-من-أب/j9jyh.net 2024-01-04 12:21:25 PST (DEBUG): No posts or pages matching slug: j9jyh.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (261.06 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(9, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(9) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('j9jyh net', '2019 01 12 \xD8\xA8\xD9\x88...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'j9jyh net', '2019 01 12 \xD8\xA8\xD9\x88...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/01/12/\xD8\xA8\xD9\x88...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/01/12/\xD8\xA8\xD9\x88...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 12), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/05/07/%D8%AA%D8%B7%D9%88%D8%B1-%D9%85%D9%81%D8%A7%D8%AC%D8%A6-%D9%88%D8%BA%D9%8A%D8%B1-%D9%85%D8%AA%D9%88%D9%82%D8%B9-%D9%81%D9%8A-%D9%82%D8%B6%D9%8A%D8%A9-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A-%D8%AD/luyutiyu.com, Stored debug messages: 2024-01-04 12:19:58 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2019/05/07/تطور-مفاجئ-وغير-متوقع-في-قضية-السعودي-ح/luyutiyu.com 2024-01-04 12:19:58 PST (DEBUG): Processing 404 for URL: /2019/05/07/تطور-مفاجئ-وغير-متوقع-في-قضية-السعودي-ح/luyutiyu.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4ou4rgg881j0, REQUEST_URI: /2019/05/07/تطور-مفاجئ-وغير-متوقع-في-قضية-السعودي-ح/luyutiyu.com 2024-01-04 12:19:59 PST (DEBUG): No posts or pages matching slug: luyutiyu.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (347.26 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(12, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(12) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('luyutiyu com', '2019 05 07 \xD8\xAA\xD8\xB7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'luyutiyu com', '2019 05 07 \xD8\xAA\xD8\xB7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/05/07/\xD8\xAA\xD8\xB7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/05/07/\xD8\xAA\xD8\xB7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 35), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/01/%D8%B4%D8%A7%D9%87%D8%AF-%D8%A7%D8%BA%D8%AA%D9%8A%D8%A7%D9%84-%D8%A7%D9%84%D8%B3%D9%81%D9%8A%D8%B1-%D8%A7%D9%84%D8%B1%D9%88%D8%B3%D9%8A-%D9%88%D9%87%D8%AC%D9%88%D9%85-%D8%A7%D9%84%D9%85/, Stored debug messages: 2024-01-04 12:19:22 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /2017/01/شاهد-اغتيال-السفير-الروسي-وهجوم-الم/ 2024-01-04 12:19:22 PST (DEBUG): Processing 404 for URL: /2017/01/شاهد-اغتيال-السفير-الروسي-وهجوم-الم/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 2a06:98c0:3600:6k3m6dj3o0m0, REQUEST_URI: /2017/01/شاهد-اغتيال-السفير-الروسي-وهجوم-الم/ 2024-01-04 12:19:22 PST (DEBUG): No posts or pages matching slug: شاهد-اغتيال-السفير-الروسي-وهجوم-الم 2024-01-04 12:25:46 PST (DEBUG): Slow query (383.72 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(35, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(35) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xB4\xD8\xA7\xD9\x87\xD8\xAF \xD8\xA7\xD8\xBA\xD8\xAA...', '2017 01 \xD8\xB4\xD8\xA7\xD9\x87\xD8...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xB4\xD8\xA7\xD9\x87\xD8\xAF \xD8\xA7\xD8\xBA\xD8\xAA...', '2017 01 \xD8\xB4\xD8\xA7\xD9\x87\xD8...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/01/\xD8\xB4\xD8\xA7\xD9\x87\xD8...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/01/\xD8\xB4\xD8\xA7\xD9\x87\xD8...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/08/29/%D8%AF%D9%8A%D9%85%D8%A7-%D8%A8%D9%8A%D8%A7%D8%B9%D8%A9-%D8%A8%D8%AF%D9%88%D9%86-%D9%85%D9%83%D9%8A%D8%A7%D8%AC-%D9%88%D8%A8%D8%AF%D9%88%D9%86-%D9%85%D9%84%D8%A7%D8%A8%D8%B3-%D8%A3%D9%8A%D8%B6%D8%A7/imty168.com, Stored debug messages: 2024-01-04 12:22:32 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /2023/08/29/ديما-بياعة-بدون-مكياج-وبدون-ملابس-أيضا/imty168.com 2024-01-04 12:22:32 PST (DEBUG): Processing 404 for URL: /2023/08/29/ديما-بياعة-بدون-مكياج-وبدون-ملابس-أيضا/imty168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 66.249.69.5td1ntcg5uj0, REQUEST_URI: /2023/08/29/ديما-بياعة-بدون-مكياج-وبدون-ملابس-أيضا/imty168.com 2024-01-04 12:22:33 PST (DEBUG): No posts or pages matching slug: imty168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (192.8 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('imty168 com', '2023 08 29 \xD8\xAF\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'imty168 com', '2023 08 29 \xD8\xAF\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/08/29/\xD8\xAF\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/08/29/\xD8\xAF\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2019/03/09/%D8%AD%D8%A7%D9%86-%D9%88%D9%82%D8%AA-%D8%A7%D9%84%D8%AA%D8%BA%D9%8A%D9%8A%D8%B1-%D8%A7%D9%86%D9%82%D9%84%D8%A7%D8%A8-%D8%B9%D8%B3%D9%83%D8%B1%D9%8A-%D9%85%D8%AD%D8%AA%D9%85%D9%84-%D8%B9%D9%84/aiyouxi.one, Stored debug messages: 2024-01-04 12:23:31 PST (DEBUG): Processing 404 for URL: /2019/03/09/حان-وقت-التغيير-انقلاب-عسكري-محتمل-عل/aiyouxi.one | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.25oi6csbhdg0, REQUEST_URI: /2019/03/09/حان-وقت-التغيير-انقلاب-عسكري-محتمل-عل/aiyouxi.one 2024-01-04 12:23:31 PST (DEBUG): No posts or pages matching slug: aiyouxi.one 2024-01-04 12:25:46 PST (DEBUG): Slow query (134.57 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('aiyouxi one', '2019 03 09 \xD8\xAD\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'aiyouxi one', '2019 03 09 \xD8\xAD\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2019/03/09/\xD8\xAD\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2019/03/09/\xD8\xAD\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/05/06/%D9%85%D8%B9%D9%87%D8%AF-%D8%A7%D9%84%D8%AC%D8%A7%D9%85%D8%B9%D8%A9-%D8%A7%D9%84%D8%B9%D8%B1%D8%A8%D9%8A%D8%A9-%D8%AA%D8%AD%D8%AA%D8%B6%D9%86-%D8%A8%D8%B4%D8%A7%D8%B1-%D8%A7%D9%84%D8%A3%D8%B3%D8%AF/yxty168.org%22, Stored debug messages: 2024-01-04 12:23:54 PST (DEBUG): Processing 404 for URL: /2021/05/06/معهد-الجامعة-العربية-تحتضن-بشار-الأسد/yxty168.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.56.4dbqanuaboi0, REQUEST_URI: /2021/05/06/معهد-الجامعة-العربية-تحتضن-بشار-الأسد/yxty168.org" 2024-01-04 12:23:55 PST (DEBUG): No posts or pages matching slug: yxty168.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (110.75 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('yxty168 org', '2021 05 06 \xD9\x85\xD8\xB9...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'yxty168 org', '2021 05 06 \xD9\x85\xD8\xB9...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/05/06/\xD9\x85\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/05/06/\xD9\x85\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/12/06/%D8%A8%D8%B9%D8%B6%D9%87%D8%A7-%D8%AE%D8%B7%D9%8A%D8%B1%D8%A9-5-%D8%A3%D8%B3%D8%A8%D8%A7%D8%A8-%D9%84%D8%A8%D8%B1%D9%88%D8%AF%D8%A9-%D8%A7%D9%84%D9%82%D8%AF%D9%85%D9%8A%D9%86/yxty168.com, Stored debug messages: 2024-01-04 12:19:47 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/12/06/بعضها-خطيرة-5-أسباب-لبرودة-القدمين/yxty168.com 2024-01-04 12:19:47 PST (DEBUG): Processing 404 for URL: /2021/12/06/بعضها-خطيرة-5-أسباب-لبرودة-القدمين/yxty168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2021/12/06/بعضها-خطيرة-5-أسباب-لبرودة-القدمين/yxty168.com 2024-01-04 12:19:48 PST (DEBUG): No posts or pages matching slug: yxty168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (357.97 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('yxty168 com', '2021 12 06 \xD8\xA8\xD8\xB9...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'yxty168 com', '2021 12 06 \xD8\xA8\xD8\xB9...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/12/06/\xD8\xA8\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/12/06/\xD8\xA8\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/05/23/%D8%A2%D9%8A%D8%A7%D8%AA-%D8%B9%D8%B1%D8%A7%D8%A8%D9%8A-%D8%B9%D9%86-%D8%AD%D9%85%D9%84%D8%A9-%D8%A7%D9%84%D8%AA%D8%AE%D8%B1%D9%8A%D8%A8-%D8%A7%D9%84%D9%88%D8%A7%D8%B3%D8%B9%D8%A9-%D9%84%D9%84%D8%AC/wanboty188.com, Stored debug messages: 2024-01-04 12:19:37 PST (DEBUG): Processing 404 for URL: /2018/05/23/آيات-عرابي-عن-حملة-التخريب-الواسعة-للج/wanboty188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.47.6o5i6hc6ddg0, REQUEST_URI: /2018/05/23/آيات-عرابي-عن-حملة-التخريب-الواسعة-للج/wanboty188.com 2024-01-04 12:19:38 PST (DEBUG): No posts or pages matching slug: wanboty188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (368.38 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('wanboty188 com', '2018 05 23 \xD8\xA2\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'wanboty188 com', '2018 05 23 \xD8\xA2\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/05/23/\xD8\xA2\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/05/23/\xD8\xA2\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 10), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/03/15/%D9%81%D9%8A%D9%84%D9%85-%D8%B4%D9%83%D9%84-%D8%A7%D9%84%D9%85%D8%A7%D8%A1-%D8%A3%D9%88%D8%B3%D9%83%D8%A7%D8%B1-2018-%D8%A8%D9%8A%D9%86-%D8%A7%D9%84%D8%B3%D8%B1%D9%8A%D8%A7%D9%84%D9%8A%D8%A9/mileyl.net, Stored debug messages: 2024-01-04 12:20:24 PST (DEBUG): Processing 404 for URL: /2018/03/15/فيلم-شكل-الماء-أوسكار-2018-بين-السريالية/mileyl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.127.vu7f7eg05v40, REQUEST_URI: /2018/03/15/فيلم-شكل-الماء-أوسكار-2018-بين-السريالية/mileyl.net 2024-01-04 12:20:24 PST (DEBUG): No posts or pages matching slug: mileyl.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (321.58 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(10, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(10) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('mileyl net', '2018 03 15 \xD9\x81\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'mileyl net', '2018 03 15 \xD9\x81\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/03/15/\xD9\x81\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/03/15/\xD9\x81\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/05/29/%D8%AA%D8%AC%D8%AF%D9%8A%D8%AF-%D9%84%D9%84%D8%AF%D9%8A%D9%86-%D9%88%D9%84%D8%A7-%D8%B4%D9%8A%D8%A1-%D9%81%D9%8A%D9%87-%D8%B4%D8%A7%D9%87%D8%AF-%D8%AF%D8%A7%D8%B9%D9%8A%D8%A9-%D9%85%D8%B5%D8%B1/jnty168.net, Stored debug messages: 2024-01-04 12:23:51 PST (DEBUG): Processing 404 for URL: /2018/05/29/تجديد-للدين-ولا-شيء-فيه-شاهد-داعية-مصر/jnty168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.39.4nf3at46e510, REQUEST_URI: /2018/05/29/تجديد-للدين-ولا-شيء-فيه-شاهد-داعية-مصر/jnty168.net 2024-01-04 12:23:52 PST (DEBUG): No posts or pages matching slug: jnty168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (113.9 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('jnty168 net', '2018 05 29 \xD8\xAA\xD8\xAC...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'jnty168 net', '2018 05 29 \xD8\xAA\xD8\xAC...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/05/29/\xD8\xAA\xD8\xAC...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/05/29/\xD8\xAA\xD8\xAC...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 15), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/06/15/%D9%87%D8%B0%D8%A7-%D9%87%D9%88-%D8%A7%D9%84%D8%B1%D9%91%D8%AC%D9%84-%D8%A7%D9%84%D8%B0%D9%8A-%D9%84%D9%85-%D9%8A%D8%B3%D8%AA%D8%B7%D9%8A%D8%B9-%D8%A3%D8%AD%D8%AF%D9%8C-%D8%A3%D9%86-%D9%8A%D9%82%D9%88/huatihui188.com, Stored debug messages: 2024-01-04 12:18:27 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/06/15/هذا-هو-الرّجل-الذي-لم-يستطيع-أحدٌ-أن-يقو/huatihui188.com 2024-01-04 12:18:27 PST (DEBUG): Processing 404 for URL: /2016/06/15/هذا-هو-الرّجل-الذي-لم-يستطيع-أحدٌ-أن-يقو/huatihui188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2016/06/15/هذا-هو-الرّجل-الذي-لم-يستطيع-أحدٌ-أن-يقو/huatihui188.com 2024-01-04 12:18:28 PST (DEBUG): No posts or pages matching slug: huatihui188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (437.89 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(15, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(15) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('huatihui188 com', '2016 06 15 \xD9\x87\xD8\xB0...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'huatihui188 com', '2016 06 15 \xD9\x87\xD8\xB0...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/06/15/\xD9\x87\xD8\xB0...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/06/15/\xD9\x87\xD8\xB0...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 8), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/06/27/%D9%81%D9%8A%D8%AF%D9%8A%D9%88-%D9%87%D9%83%D8%B0%D8%A7-%D8%A7%D8%B4%D8%AA%D8%B9%D9%84%D8%AA-%D8%A7%D9%84%D8%B7%D8%A7%D8%A6%D8%B1%D8%A9-%D8%A7%D9%84%D8%B3%D9%86%D8%BA%D8%A7%D9%81%D9%88%D8%B1%D9%8A/agzl.net, Stored debug messages: 2024-01-04 12:22:36 PST (DEBUG): Processing 404 for URL: /2016/06/27/فيديو-هكذا-اشتعلت-الطائرة-السنغافوري/agzl.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.3f94hf8lb830, REQUEST_URI: /2016/06/27/فيديو-هكذا-اشتعلت-الطائرة-السنغافوري/agzl.net 2024-01-04 12:22:37 PST (DEBUG): No posts or pages matching slug: agzl.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (188.85 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(8, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(8) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzl net', '2016 06 27 \xD9\x81\xD9\x8A...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzl net', '2016 06 27 \xD9\x81\xD9\x8A...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/06/27/\xD9\x81\xD9\x8A...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/06/27/\xD9\x81\xD9\x8A...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 6), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tag/%D8%A7%D9%81%D8%A7%D9%86%D9%83%D8%A7/, Stored debug messages: 2024-01-04 12:22:56 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /tag/افانكا/ 2024-01-04 12:22:56 PST (DEBUG): Processing 404 for URL: /tag/افانكا/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 66.249.69.5td1ntcg5uj0, REQUEST_URI: /tag/افانكا/ 2024-01-04 12:22:57 PST (DEBUG): No posts or pages matching slug: افانكا 2024-01-04 12:25:46 PST (DEBUG): Slow query (169.13 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(6, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(6) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xA7\xD9\x81\xD8\xA7\xD9\x86\xD9\x83\xD8\xA7', 'tag \xD8\xA7\xD9\x81\xD8\xA7\xD9\x86\xD9\x83\xD8...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xA7\xD9\x81\xD8\xA7\xD9\x86\xD9\x83\xD8\xA7', 'tag \xD8\xA7\xD9\x81\xD8\xA7\xD9\x86\xD9\x83\xD8...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tag/\xD8\xA7\xD9\x81\xD8\xA7\xD9\x86\xD9\x83\xD8...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tag/\xD8\xA7\xD9\x81\xD8\xA7\xD9\x86\xD9\x83\xD8...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/07/06/%D9%85%D8%AE%D8%B7%D8%B7-%D8%A5%D9%85%D8%A7%D8%B1%D8%A7%D8%AA%D9%8A-%D8%AE%D8%A8%D9%8A%D8%AB-%D9%84%D8%A5%D8%AC%D8%A8%D8%A7%D8%B1-%D8%AD%D8%B3%D8%A7%D8%A8%D8%A7%D8%AA-%D8%B9%D9%8F%D9%85%D8%A7%D9%86/pmtiyu168.com, Stored debug messages: 2024-01-04 12:21:25 PST (DEBUG): Processing 404 for URL: /2020/07/06/مخطط-إماراتي-خبيث-لإجبار-حسابات-عُمان/pmtiyu168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.118.4dbqanuaboi0, REQUEST_URI: /2020/07/06/مخطط-إماراتي-خبيث-لإجبار-حسابات-عُمان/pmtiyu168.com 2024-01-04 12:21:25 PST (DEBUG): No posts or pages matching slug: pmtiyu168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (260.66 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pmtiyu168 com', '2020 07 06 \xD9\x85\xD8\xAE...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pmtiyu168 com', '2020 07 06 \xD9\x85\xD8\xAE...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/07/06/\xD9\x85\xD8\xAE...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/07/06/\xD9\x85\xD8\xAE...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 40), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /apple-touch-icon-120x120-precomposed.png, Stored debug messages: 2024-01-04 12:20:44 PST (DEBUG): Processing 404 for URL: /apple-touch-icon-120x120-precomposed.png | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: MobileSafari/8616.2.9.10.13 CFNetwork/1485 Darwin/23.1.0, REMOTE_ADDR: 107.11.42.4nf3at46e510, REQUEST_URI: /apple-touch-icon-120x120-precomposed.png 2024-01-04 12:20:45 PST (DEBUG): No posts or pages matching slug: apple-touch-icon-120x120-precomposed.png 2024-01-04 12:25:46 PST (DEBUG): Slow query (301.12 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(40, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(40) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('apple touch ico...', '', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'apple touch ico...', '', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('apple-touch-ico...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('apple-touch-ico...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 39), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /%D9%85%D9%88%D8%AF%D9%84-%D8%B1%D9%88%D8%B2-%D8%AA%D8%B3%D8%AA%D9%86%D8%AC%D8%AF-%D8%A8%D8%A7%D8%A8%D9%86-%D8%B3%D9%84%D9%85%D8%A7%D9%86-%D9%84%D9%8A%D9%86%D9%82%D8%B0%D9%87%D8%A7-%D9%85%D9%86-%D8%B2/, Stored debug messages: 2024-01-04 12:19:20 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /مودل-روز-تستنجد-بابن-سلمان-لينقذها-من-ز/ 2024-01-04 12:19:20 PST (DEBUG): Processing 404 for URL: /مودل-روز-تستنجد-بابن-سلمان-لينقذها-من-ز/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 66.249.69.45r375i2moj0, REQUEST_URI: /مودل-روز-تستنجد-بابن-سلمان-لينقذها-من-ز/ 2024-01-04 12:19:20 PST (DEBUG): No posts or pages matching slug: مودل-روز-تستنجد-بابن-سلمان-لينقذها-من-ز 2024-01-04 12:25:46 PST (DEBUG): Slow query (385.57 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(39, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(39) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD9\x85\xD9\x88\xD8\xAF\xD9\x84 \xD8\xB1\xD9\x88\xD8\xB2...', '\xD9\x85\xD9\x88\xD8\xAF\xD9\x84 \xD8\xB1\xD9\x88\xD8\xB2...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD9\x85\xD9\x88\xD8\xAF\xD9\x84 \xD8\xB1\xD9\x88\xD8\xB2...', '\xD9\x85\xD9\x88\xD8\xAF\xD9\x84 \xD8\xB1\xD9\x88\xD8\xB2...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('\xD9\x85\xD9\x88\xD8\xAF\xD9\x84-\xD8\xB1\xD9\x88\xD8\xB2...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('\xD9\x85\xD9\x88\xD8\xAF\xD9\x84-\xD8\xB1\xD9\x88\xD8\xB2...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 17), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/09/15/%D8%A5%D8%B9%D9%84%D8%A7%D9%86-%D9%8A%D8%B1%D9%88%D8%AC-%D9%84%D9%84%D8%AF%D9%8A%D8%A7%D8%AB%D8%A9-%D9%8A%D8%AB%D9%8A%D8%B1-%D8%BA%D8%B6%D8%A8-%D8%A7%D9%84%D8%B3%D8%B9%D9%88%D8%AF%D9%8A%D9%8A%D9%86/jiangnanty188.com, Stored debug messages: 2024-01-04 12:22:09 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2023/09/15/إعلان-يروج-للدياثة-يثير-غضب-السعوديين/jiangnanty188.com 2024-01-04 12:22:09 PST (DEBUG): Processing 404 for URL: /2023/09/15/إعلان-يروج-للدياثة-يثير-غضب-السعوديين/jiangnanty188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2023/09/15/إعلان-يروج-للدياثة-يثير-غضب-السعوديين/jiangnanty188.com 2024-01-04 12:22:10 PST (DEBUG): No posts or pages matching slug: jiangnanty188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (215.72 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(17, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(17) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('jiangnanty188 c...', '2023 09 15 \xD8\xA5\xD8\xB9...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'jiangnanty188 c...', '2023 09 15 \xD8\xA5\xD8\xB9...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/09/15/\xD8\xA5\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/09/15/\xD8\xA5\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 8), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2018/05/13/%D8%AA%D8%A7%D8%B1%D9%8A%D8%AE-%D8%A7%D9%84%D8%B9%D9%84%D9%88%D9%85-%D8%A8%D9%8A%D9%86-%D8%A7%D9%84%D8%AA%D8%AC%D8%B1%D8%A8%D8%A9-%D8%A7%D9%84%D8%B9%D9%81%D9%88%D9%8A%D8%A9-%D9%88%D8%A7%D9%84%D8%AA/imty.org, Stored debug messages: 2024-01-04 12:17:56 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2018/05/13/تاريخ-العلوم-بين-التجربة-العفوية-والت/imty.org 2024-01-04 12:17:56 PST (DEBUG): Processing 404 for URL: /2018/05/13/تاريخ-العلوم-بين-التجربة-العفوية-والت/imty.org | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2018/05/13/تاريخ-العلوم-بين-التجربة-العفوية-والت/imty.org 2024-01-04 12:17:57 PST (DEBUG): No posts or pages matching slug: imty.org 2024-01-04 12:25:46 PST (DEBUG): Slow query (469.37 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(8, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(8) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('imty org', '2018 05 13 \xD8\xAA\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'imty org', '2018 05 13 \xD8\xAA\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2018/05/13/\xD8\xAA\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2018/05/13/\xD8\xAA\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/04/28/%D8%A8%D9%84%D9%88%D9%85%D8%A8%D9%8A%D8%B1%D8%BA-%D8%AA%D8%AD%D8%B0%D8%B1-%D9%85%D9%86-%D9%85%D8%B3%D8%AA%D9%82%D8%A8%D9%84-%D9%85%D8%AC%D9%87%D9%88%D9%84-%D8%B5%D8%A8%D8%B1-%D8%A7%D9%84%D8%B3%D9%88/pgdz168.com, Stored debug messages: 2024-01-04 12:18:34 PST (DEBUG): Processing 404 for URL: /2023/04/28/بلومبيرغ-تحذر-من-مستقبل-مجهول-صبر-السو/pgdz168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html), REMOTE_ADDR: 85.208.96.3f7rrnlg73c0, REQUEST_URI: /2023/04/28/بلومبيرغ-تحذر-من-مستقبل-مجهول-صبر-السو/pgdz168.com 2024-01-04 12:18:34 PST (DEBUG): No posts or pages matching slug: pgdz168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (431.72 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pgdz168 com', '2023 04 28 \xD8\xA8\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pgdz168 com', '2023 04 28 \xD8\xA8\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/04/28/\xD8\xA8\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/04/28/\xD8\xA8\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/07/19/%D8%BA%D8%A7%D8%AF%D8%A9-%D8%B9%D9%88%D9%8A%D8%B3-%D8%B6%D8%AD%D9%8A%D8%A9-%D8%A8%D8%B1%D8%A7%D9%85%D8%AC-%D8%A7%D9%84%D8%AA%D8%AC%D8%B3%D8%B3/bdtiyu168.net, Stored debug messages: 2024-01-04 12:21:10 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2021/07/19/غادة-عويس-ضحية-برامج-التجسس/bdtiyu168.net 2024-01-04 12:21:10 PST (DEBUG): Processing 404 for URL: /2021/07/19/غادة-عويس-ضحية-برامج-التجسس/bdtiyu168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.7b2orif4bsn0, REQUEST_URI: /2021/07/19/غادة-عويس-ضحية-برامج-التجسس/bdtiyu168.net 2024-01-04 12:21:10 PST (DEBUG): No posts or pages matching slug: bdtiyu168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (275.62 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('bdtiyu168 net', '2021 07 19 \xD8\xBA\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'bdtiyu168 net', '2021 07 19 \xD8\xBA\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/07/19/\xD8\xBA\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/07/19/\xD8\xBA\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2022/02/08/%D9%82%D8%A8%D9%84%D8%A7%D8%AA-%D9%88%D8%A3%D8%AD%D8%B6%D8%A7%D9%86-%D9%81%D8%B1%D8%AD-%D8%A7%D9%84%D9%87%D8%A7%D8%AF%D9%8A-%D9%84%D8%B2%D9%88%D8%AC%D9%87%D8%A7-%D8%A7%D9%84%D8%A5%D9%8A%D8%B1%D8%A7/tbtiyu188.com, Stored debug messages: 2024-01-04 12:23:43 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2022/02/08/قبلات-وأحضان-فرح-الهادي-لزوجها-الإيرا/tbtiyu188.com 2024-01-04 12:23:43 PST (DEBUG): Processing 404 for URL: /2022/02/08/قبلات-وأحضان-فرح-الهادي-لزوجها-الإيرا/tbtiyu188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.7u2cenumjb70, REQUEST_URI: /2022/02/08/قبلات-وأحضان-فرح-الهادي-لزوجها-الإيرا/tbtiyu188.com 2024-01-04 12:23:44 PST (DEBUG): No posts or pages matching slug: tbtiyu188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (121.8 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('tbtiyu188 com', '2022 02 08 \xD9\x82\xD8\xA8...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'tbtiyu188 com', '2022 02 08 \xD9\x82\xD8\xA8...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2022/02/08/\xD9\x82\xD8\xA8...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2022/02/08/\xD9\x82\xD8\xA8...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2021/08/12/%D8%BA%D8%A7%D8%B6%D8%A8%D9%88%D9%86-%D8%A3%D8%AA%D8%B1%D8%A7%D9%83-%D9%8A%D9%87%D8%A7%D8%AC%D9%85%D9%88%D9%86-%D8%A7%D9%84%D9%84%D8%A7%D8%AC%D8%A6%D9%8A%D9%86-%D8%A7%D9%84%D8%B3%D9%88%D8%B1%D9%8A/pmtiyu168.com, Stored debug messages: 2024-01-04 12:21:27 PST (DEBUG): Processing 404 for URL: /2021/08/12/غاضبون-أتراك-يهاجمون-اللاجئين-السوري/pmtiyu168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.34.12odak2rd2d0, REQUEST_URI: /2021/08/12/غاضبون-أتراك-يهاجمون-اللاجئين-السوري/pmtiyu168.com 2024-01-04 12:21:27 PST (DEBUG): No posts or pages matching slug: pmtiyu168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (258.66 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pmtiyu168 com', '2021 08 12 \xD8\xBA\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pmtiyu168 com', '2021 08 12 \xD8\xBA\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2021/08/12/\xD8\xBA\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2021/08/12/\xD8\xBA\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/08/26/%D8%A2%D8%AE%D8%B1-%D9%85%D8%A7-%D9%82%D8%A7%D9%84%D9%87-%D9%88%D9%84%D9%8A%D8%AF-%D8%A7%D9%84%D9%85%D8%B7%D9%8A%D8%B1%D9%8A-%D8%A3%D8%AD%D8%AF-%D8%B6%D8%AD%D8%A7%D9%8A%D8%A7-%D9%81%D8%A7%D8%B7/kaiyun-168.com, Stored debug messages: 2024-01-04 12:21:40 PST (DEBUG): Processing 404 for URL: /2023/08/26/آخر-ما-قاله-وليد-المطيري-أحد-ضحايا-فاط/kaiyun-168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.16.683pp8r7ac60, REQUEST_URI: /2023/08/26/آخر-ما-قاله-وليد-المطيري-أحد-ضحايا-فاط/kaiyun-168.com 2024-01-04 12:21:41 PST (DEBUG): No posts or pages matching slug: kaiyun-168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (245.33 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaiyun 168 com', '2023 08 26 \xD8\xA2\xD8\xAE...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaiyun 168 com', '2023 08 26 \xD8\xA2\xD8\xAE...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/08/26/\xD8\xA2\xD8\xAE...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/08/26/\xD8\xA2\xD8\xAE...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/04/27/%D9%81%D8%B6%D9%8A%D8%AD%D8%A9-%D9%87%D9%8A%D8%A6%D8%A9-%D8%A7%D9%84%D8%A3%D8%B9%D9%85%D8%A7%D9%84-%D8%A7%D9%84%D8%AE%D9%8A%D8%B1%D9%8A%D8%A9-%D8%A7%D9%84%D8%A5%D9%85%D8%A7%D8%B1%D8%A7%D8%AA%D9%8A/pmzr168.com, Stored debug messages: 2024-01-04 12:19:30 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2020/04/27/فضيحة-هيئة-الأعمال-الخيرية-الإماراتي/pmzr168.com 2024-01-04 12:19:30 PST (DEBUG): Processing 404 for URL: /2020/04/27/فضيحة-هيئة-الأعمال-الخيرية-الإماراتي/pmzr168.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2020/04/27/فضيحة-هيئة-الأعمال-الخيرية-الإماراتي/pmzr168.com 2024-01-04 12:19:30 PST (DEBUG): No posts or pages matching slug: pmzr168.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (375.64 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('pmzr168 com', '2020 04 27 \xD9\x81\xD8\xB6...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'pmzr168 com', '2020 04 27 \xD9\x81\xD8\xB6...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/04/27/\xD9\x81\xD8\xB6...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/04/27/\xD9\x81\xD8\xB6...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 10), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/08/26/%D8%A8%D9%86%D9%83-%D8%A7%D9%84%D8%B1%D9%8A%D8%A7%D8%B6?nowprocket=1&no_optimize=1, Stored debug messages: 2024-01-04 12:17:48 PST (DEBUG): Processing 404 for URL: /2020/08/26/بنك-الرياض?nowprocket=1 | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36, REMOTE_ADDR: 148.113.161.7qfjfqq6iqm0, REQUEST_URI: /2020/08/26/بنك-الرياض?nowprocket=1&no_optimize=1 2024-01-04 12:17:49 PST (DEBUG): No posts or pages matching slug: بنك-الرياض 2024-01-04 12:25:46 PST (DEBUG): Slow query (477.31 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(10, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(10) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xA8\xD9\x86\xD9\x83 \xD8\xA7\xD9\x84\xD8\xB1\xD9\x8A...', '2020 08 26 \xD8\xA8\xD9\x86...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xA8\xD9\x86\xD9\x83 \xD8\xA7\xD9\x84\xD8\xB1\xD9\x8A...', '2020 08 26 \xD8\xA8\xD9\x86...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/08/26/\xD8\xA8\xD9\x86...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/08/26/\xD8\xA8\xD9\x86...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/02/24/%D8%AF%D9%88%D8%B1%D9%8A-%D8%A3%D8%A8%D8%B7%D8%A7%D9%84-%D8%A3%D9%81%D8%B1%D9%8A%D9%82%D9%8A%D8%A7-2023-%D8%A7%D9%84%D9%88%D8%AF%D8%A7%D8%AF-%D9%88%D8%A7%D9%84%D9%87%D9%84%D8%A7%D9%84-%D9%8A%D9%81/agzr188.com, Stored debug messages: 2024-01-04 12:21:09 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 for URL: /2023/02/24/دوري-أبطال-أفريقيا-2023-الوداد-والهلال-يف/agzr188.com 2024-01-04 12:21:09 PST (DEBUG): Processing 404 for URL: /2023/02/24/دوري-أبطال-أفريقيا-2023-الوداد-والهلال-يف/agzr188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0, REMOTE_ADDR: 5.255.231.3uuo2vp3dqag, REQUEST_URI: /2023/02/24/دوري-أبطال-أفريقيا-2023-الوداد-والهلال-يف/agzr188.com 2024-01-04 12:21:10 PST (DEBUG): No posts or pages matching slug: agzr188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (276.17 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzr188 com', '2023 02 24 \xD8\xAF\xD9\x88...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzr188 com', '2023 02 24 \xD8\xAF\xD9\x88...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/02/24/\xD8\xAF\xD9\x88...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/02/24/\xD8\xAF\xD9\x88...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 37), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /www.watanserb.com/wp-content/uploads/2022/03/%D8%A7%D9%84%D8%A3%D8%B2%D9%85%D8%A9-%D8%A7%D9%84%D8%B1%D9%88%D8%B3%D9%8A%D8%A9-%D8%A7%D9%84%D8%A3%D9%88%D9%83%D8%B1%D8%A7%D9%86%D9%8A%D8%A9-scaled.jpeg, Stored debug messages: 2024-01-04 12:18:36 PST (DEBUG): Processing 404 for URL: /www.watanserb.com/wp-content/uploads/2022/03/الأزمة-الروسية-الأوكرانية-scaled.jpeg | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Dalvik/2.1.0 (Linux; U; Android 12; SM-A525F Build/SP1A.210812.016), REMOTE_ADDR: 109.74.192.3ulfhq2p4vvg, REQUEST_URI: /www.watanserb.com/wp-content/uploads/2022/03/الأزمة-الروسية-الأوكرانية-scaled.jpeg 2024-01-04 12:18:37 PST (DEBUG): No posts or pages matching slug: الأزمة-الروسية-الأوكرانية-scaled.jpeg 2024-01-04 12:25:46 PST (DEBUG): Slow query (429.36 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(37, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(37) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xA7\xD9\x84\xD8\xA3\xD8\xB2\xD9\x85\xD8\xA9 \xD8\xA7...', 'www watanserb c...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xA7\xD9\x84\xD8\xA3\xD8\xB2\xD9\x85\xD8\xA9 \xD8\xA7...', 'www watanserb c...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('www.watanserb.c...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('www.watanserb.c...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 13), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2015/01/13/%D9%81%D9%84%D8%B3%D8%B7%D9%8A%D9%86-%D9%85%D8%A7%D8%AC%D8%AA-%D8%A8%D9%8A%D8%B6%D8%A7%D8%A1-%D8%A7%D9%84%D8%AA%D9%84%D9%88%D9%84/bandaotiyu.ai, Stored debug messages: 2024-01-04 12:20:19 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2015/01/13/فلسطين-ماجت-بيضاء-التلول/bandaotiyu.ai 2024-01-04 12:20:19 PST (DEBUG): Processing 404 for URL: /2015/01/13/فلسطين-ماجت-بيضاء-التلول/bandaotiyu.ai | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.58fvr7j8njt0, REQUEST_URI: /2015/01/13/فلسطين-ماجت-بيضاء-التلول/bandaotiyu.ai 2024-01-04 12:20:20 PST (DEBUG): No posts or pages matching slug: bandaotiyu.ai 2024-01-04 12:25:46 PST (DEBUG): Slow query (326.11 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5.01 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(13, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(13) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('bandaotiyu ai', '2015 01 13 \xD9\x81\xD9\x84...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'bandaotiyu ai', '2015 01 13 \xD9\x81\xD9\x84...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2015/01/13/\xD9\x81\xD9\x84...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2015/01/13/\xD9\x81\xD9\x84...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2017/06/07/%D8%B4%D8%A7%D9%87%D8%AF-%D8%AD%D8%AF%D8%AB-%D9%81%D9%8A-%D9%81%D9%84%D8%B3%D8%B7%D9%8A%D9%86-%D8%B3%D8%B1%D9%82-%D8%B3%D9%8A%D8%A7%D8%B1%D8%A9-%D9%88%D8%A7%D9%83%D8%AA%D8%B4%D9%81/agzr188.com, Stored debug messages: 2024-01-04 12:17:48 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2017/06/07/شاهد-حدث-في-فلسطين-سرق-سيارة-واكتشف/agzr188.com 2024-01-04 12:17:48 PST (DEBUG): Processing 404 for URL: /2017/06/07/شاهد-حدث-في-فلسطين-سرق-سيارة-واكتشف/agzr188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 52.167.144.4svnogt3u090, REQUEST_URI: /2017/06/07/شاهد-حدث-في-فلسطين-سرق-سيارة-واكتشف/agzr188.com 2024-01-04 12:17:49 PST (DEBUG): No posts or pages matching slug: agzr188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (477.1 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('agzr188 com', '2017 06 07 \xD8\xB4\xD8\xA7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'agzr188 com', '2017 06 07 \xD8\xB4\xD8\xA7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2017/06/07/\xD8\xB4\xD8\xA7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2017/06/07/\xD8\xB4\xD8\xA7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 17), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2016/02/19/%D9%81%D8%B7%D8%B1-%D8%A7%D9%84%D9%86%D8%B4%D9%88%D8%A9-%D8%A7%D9%84%D8%AC%D9%86%D8%B3%D9%8A%D8%A9-%D8%A7%D9%84%D8%B0%D9%8A-%D9%8A%D8%AB%D9%8A%D8%B1-%D8%A7%D9%84%D9%86%D9%91%D8%B3%D8%A7%D8%A1-%D8%B9/jiangnanty188.com, Stored debug messages: 2024-01-04 12:21:26 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36 for URL: /2016/02/19/فطر-النشوة-الجنسية-الذي-يثير-النّساء-ع/jiangnanty188.com 2024-01-04 12:21:26 PST (DEBUG): Processing 404 for URL: /2016/02/19/فطر-النشوة-الجنسية-الذي-يثير-النّساء-ع/jiangnanty188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36, REMOTE_ADDR: 40.77.167.4q25c1ajfq80, REQUEST_URI: /2016/02/19/فطر-النشوة-الجنسية-الذي-يثير-النّساء-ع/jiangnanty188.com 2024-01-04 12:21:27 PST (DEBUG): No posts or pages matching slug: jiangnanty188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (259.22 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(17, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(17) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('jiangnanty188 c...', '2016 02 19 \xD9\x81\xD8\xB7...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'jiangnanty188 c...', '2016 02 19 \xD9\x81\xD8\xB7...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2016/02/19/\xD9\x81\xD8\xB7...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2016/02/19/\xD9\x81\xD8\xB7...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 15), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /tag/%D8%B5%D9%84%D8%A7%D8%AD-%D8%B9%D8%A8%D8%AF-%D8%A7%D9%84%D8%AD%D9%85%D9%8A%D8%AF/, Stored debug messages: 2024-01-04 12:22:30 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) for URL: /tag/صلاح-عبد-الحميد/ 2024-01-04 12:22:30 PST (DEBUG): Processing 404 for URL: /tag/صلاح-عبد-الحميد/ | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.129 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html), REMOTE_ADDR: 66.249.69.5td1ntcg5uj0, REQUEST_URI: /tag/صلاح-عبد-الحميد/ 2024-01-04 12:22:31 PST (DEBUG): No posts or pages matching slug: صلاح-عبد-الحميد 2024-01-04 12:25:46 PST (DEBUG): Slow query (194.7 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(15, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(15) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('\xD8\xB5\xD9\x84\xD8\xA7\xD8\xAD \xD8\xB9\xD8\xA8\xD8\xAF...', 'tag \xD8\xB5\xD9\x84\xD8\xA7\xD8\xAD \xD8\xB9...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, '\xD8\xB5\xD9\x84\xD8\xA7\xD8\xAD \xD8\xB9\xD8\xA8\xD8\xAF...', 'tag \xD8\xB5\xD9\x84\xD8\xA7\xD8\xAD \xD8\xB9...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('tag/\xD8\xB5\xD9\x84\xD8\xA7\xD8\xAD-\xD8\xB9...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('tag/\xD8\xB5\xD9\x84\xD8\xA7\xD8\xAD-\xD8\xB9...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 14), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/05/21/%D8%AC%D9%88%D8%B1%D8%AC%D9%8A%D9%86%D8%A7-%D8%AA%D8%AE%D8%B7%D9%81-%D8%A7%D9%84%D8%A3%D8%B6%D9%88%D8%A7%D8%A1-%D9%85%D9%86-%D8%B9%D9%8A%D8%AF-%D9%85%D9%8A%D9%84%D8%A7%D8%AF-%D8%B4%D9%82%D9%8A%D9%82/aiyouxi168.net, Stored debug messages: 2024-01-04 12:19:03 PST (DEBUG): Processing 404 for URL: /2023/05/21/جورجينا-تخطف-الأضواء-من-عيد-ميلاد-شقيق/aiyouxi168.net | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/), REMOTE_ADDR: 51.222.253.4ruce7vs32i0, REQUEST_URI: /2023/05/21/جورجينا-تخطف-الأضواء-من-عيد-ميلاد-شقيق/aiyouxi168.net 2024-01-04 12:19:04 PST (DEBUG): No posts or pages matching slug: aiyouxi168.net 2024-01-04 12:25:46 PST (DEBUG): Slow query (402 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(14, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(14) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('aiyouxi168 net', '2023 05 21 \xD8\xAC\xD9\x88...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'aiyouxi168 net', '2023 05 21 \xD8\xAC\xD9\x88...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/05/21/\xD8\xAC\xD9\x88...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/05/21/\xD8\xAC\xD9\x88...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 17), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2023/08/31/%D8%A8%D8%AD%D8%B6%D9%88%D8%B1-%D9%85%D9%8A%D8%B3%D9%8A-%D8%A5%D9%86%D8%AA%D8%B1-%D9%85%D9%8A%D8%A7%D9%85%D9%8A-%D9%8A%D8%AA%D8%B9%D8%AB%D8%B1-%D8%A3%D9%85%D8%A7%D9%85-%D9%86%D8%A7%D8%B4%D9%81%D9%8A/jiangnanty188.com, Stored debug messages: 2024-01-04 12:20:24 PST (DEBUG): Processing 404 for URL: /2023/08/31/بحضور-ميسي-إنتر-ميامي-يتعثر-أمام-ناشفي/jiangnanty188.com | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com), REMOTE_ADDR: 47.128.119.6ftjdierr390, REQUEST_URI: /2023/08/31/بحضور-ميسي-إنتر-ميامي-يتعثر-أمام-ناشفي/jiangnanty188.com 2024-01-04 12:20:25 PST (DEBUG): No posts or pages matching slug: jiangnanty188.com 2024-01-04 12:25:46 PST (DEBUG): Slow query (321.51 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(17, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(17) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('jiangnanty188 c...', '2023 08 31 \xD8\xA8\xD8\xAD...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'jiangnanty188 c...', '2023 08 31 \xD8\xA8\xD8\xAD...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2023/08/31/\xD8\xA8\xD8\xAD...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2023/08/31/\xD8\xA8\xD8\xAD...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main} 2024-01-04 12:40:56 PST (ERROR): Error executing query. Err: MySQL server has gone away, Query: /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql BEGIN ----- */ select wp_posts.id, wp_posts.post_type, wp_posts.post_parent, wp_posts.post_title, /* the depth is only here to initialize the value to something. later it's used for sorting. */ '0' as depth, usefulterms.grouped_terms, plc.url from wp_posts wp_posts left outer join ( /* This selects posts that have the exclude keys set in woocommerce. The exclude keys are all aggregated on one line with group_concat(). */ select wptr.object_id, group_concat(wpt.name) as grouped_terms from wp_term_relationships wptr left outer join wp_terms wpt on wptr.term_taxonomy_id = wpt.term_id and wpt.name in ('exclude-from-search', 'exclude-from-catalog') where wpt.name is not null group by wptr.object_id ) usefulterms on wp_posts.ID = usefulterms.object_id left outer join wp_abj404_permalink_cache plc on wp_posts.ID = plc.id where wp_posts.post_status in ('publish', 'published') and lcase(wp_posts.post_type) in ('page', 'post', 'product') /* 'page', 'post', 'product' */ /* only include this line if a slug has been specified. e.g. and post_name = 'specifiedSlug' /* */ /* only include this line if a search term has been specified. e.g. and lower(post_name) like 'searchTerm' /* */ /* only include this line if it's been specified. e.g. and abs(plc.url_length - 100) <= 6 /* */ and ( usefulterms.grouped_terms is null or usefulterms.grouped_terms not like '%exclude-from-search%' or usefulterms.grouped_terms not like '%exclude-from-catalog%' ) /* order results. e.g order by abs(plc.url_length - 100), wp_posts.ID */ order by abs(plc.url_length - 11), wp_posts.id /* */ /* limit results. e.g limit 250 */ limit 0, 1000 /* */ /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/getPublishedPagesAndPostsIDs.sql END ----- */ , PHP version: 8.1.26, WP ver: 6.4.2, Plugin ver: 2.35.6, Referrer: , Requested URL: /2020/01/07/%D9%8A%D9%88%D8%B3%D9%81-%D8%A8%D9%86-%D8%B9%D9%84%D9%88%D9%8A-%D9%8A%D9%81%D8%AC%D8%B1-%D9%85%D9%81%D8%A7%D8%AC%D8%A3%D8%A9-%D9%88%D9%8A%D9%83%D8%B4%D9%81-%D8%AA%D9%81%D8%A7%D8%B5%D9%8A%D9%84-%D8%A7/kaiyun.work, Stored debug messages: 2024-01-04 12:18:00 PST (DEBUG): Ignoring user agent (process ok): Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots) for URL: /2020/01/07/يوسف-بن-علوي-يفجر-مفاجأة-ويكشف-تفاصيل-ا/kaiyun.work 2024-01-04 12:18:00 PST (DEBUG): Processing 404 for URL: /2020/01/07/يوسف-بن-علوي-يفجر-مفاجأة-ويكشف-تفاصيل-ا/kaiyun.work | Redirect: {"id":0} | is_single(): | is_page(): | is_feed(): | is_trackback(): | is_preview(): | options: auto_redirects: 1, auto_score: 90, auto_cats: 1, auto_tags: 1, dest404page: https://www.watanserb.com/|4, HTTP_USER_AGENT: Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots), REMOTE_ADDR: 95.108.213.60s68dg9ju70, REQUEST_URI: /2020/01/07/يوسف-بن-علوي-يفجر-مفاجأة-ويكشف-تفاصيل-ا/kaiyun.work 2024-01-04 12:18:00 PST (DEBUG): No posts or pages matching slug: kaiyun.work 2024-01-04 12:25:46 PST (DEBUG): Slow query (465.62 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql BEGIN ----- */ insert ignore into wp_abj404_permalink_cache (id, url, meta, post_parent, url_length) /* This selects the permalink for a page ID. */ select subTable.*, length(subTable.url) from ( select wpp.id as id, case when wpp.post_type = 'post' then concat(/* wpo_su.option_value, */ replace(replace(replace(replace(replace(replace(replace(replace(replace(replace(replace( wpo_pls.option_value, '%year%', date_format(wpp.post_date, '%Y')), '%monthnum%', date_format(wpp.post_date, '%m')), '%day%', date_format(wpp.post_date, '%d')), '%hour%', date_format(wpp.post_date, '%HH')), '%minute%', date_format(wpp.post_date, '%i')), '%second%', date_format(wpp.post_date, '%ss')), '%postname%', wpp.post_name), '%pagename%', wpp.post_name), '%post_id%', wpp.id), '%category%', coalesce(category_table.category, '')), '%author%', coalesce(author_table.user_nicename, '')) ) /* pages don't use the permalink structure. */ else concat(concat('/', wpp.post_name), '/') end as url, concat(concat(concat(concat('s:', wpp.post_status), ',t:'), wpp.post_type), ',') as meta, wpp.post_parent as post_parent from wp_posts wpp inner join wp_options wpo_pls on wpo_pls.option_name = 'permalink_structure' inner join wp_options wpo_su on wpo_su.option_name = 'siteurl' /* select the author of a post. */ left outer join ( select wpusers.id, wpusers.user_nicename from wp_users wpusers inner join wp_options wpo on wpo.option_name = 'permalink_structure' /* Only include this subselect if the author is necessary. */ where instr(wpo.option_value, '%author%') > 0 ) author_table on wpp.post_author = author_table.ID /* select the category of a post. */ left outer join ( select wtr.object_id ID, min(wpt.slug) category from wp_term_relationships wtr inner join wp_options wpo on wpo.option_name = 'permalink_structure' inner join wp_term_taxonomy wtt on wtt.term_taxonomy_id = wtr.term_taxonomy_id and wtt.taxonomy = 'category' inner join wp_terms wpt on wpt.term_id = wtt.term_id /* Only include this subselect if the category is necessary. This speeds up the query from .2 to .001 when the category is not used in the permalink structure. */ where instr(wpo.option_value, '%category%') > 0 group by wtr.object_id ) category_table on wpp.ID = category_table.ID where /* only published posts. */ wpp.post_status in ('publish', 'published') ) subTable /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCache.sql END ----- */ 2024-01-04 12:25:51 PST (DEBUG): Slow query (5 seconds): /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql BEGIN ----- */ update wp_abj404_permalink_cache updateme INNER JOIN ( select main.id as id_to_update, /* main.url as old_url, */ replace(concat(parent.url, main.url), '//', '/') as new_url, parent.post_parent as new_post_parent from wp_abj404_permalink_cache main left outer join wp_abj404_permalink_cache parent on main.post_parent = parent.id /* only include pages that have a parent. */ where main.post_parent != 0 order by main.id ) newdata ON updateme.id = newdata.id_to_update SET updateme.url = newdata.new_url, updateme.post_parent = newdata.new_post_parent where updateme.post_parent != 0 /* ------------------ /home/watanser/public_html/wp-content/plugins/404-solution/includes/sql/updatePermalinkCacheParentPages.sql END ----- */ 2024-01-04 12:25:56 PST (DEBUG): Found 0 likely match IDs., Trace: #0 /home/watanser/public_html/wp-content/plugins/404-solution/includes/DataAccess.php(1754): ABJ_404_Solution_Logging->errorMessage('Error executing...') #1 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(74): ABJ_404_Solution_DataAccess->getPublishedPagesAndPostsIDs('', '', ' */\n limit 0, ...', ' */\n order by ...', '') #2 /home/watanser/public_html/wp-content/plugins/404-solution/includes/PublishedPostsProvider.php(49): ABJ_404_Solution_PublishedPostsProvider->getNextBatchFromTheDatabase(11, 1000, NULL) #3 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(727): ABJ_404_Solution_PublishedPostsProvider->getNextBatch(11) #4 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(519): ABJ_404_Solution_SpellChecker->getLikelyMatchIDs('kaiyun work', '2020 01 07 \xD9\x8A\xD9\x88...', 'categories', Array) #5 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(425): ABJ_404_Solution_SpellChecker->matchOnCats(Array, 'kaiyun work', '2020 01 07 \xD9\x8A\xD9\x88...', 'categories') #6 /home/watanser/public_html/wp-content/plugins/404-solution/includes/SpellChecker.php(314): ABJ_404_Solution_SpellChecker->findMatchingPosts('2020/01/07/\xD9\x8A\xD9\x88...', '1', '1') #7 /home/watanser/public_html/wp-content/plugins/404-solution/includes/WordPress_Connector.php(277): ABJ_404_Solution_SpellChecker->getPermalinkUsingSpelling('2020/01/07/\xD9\x8A\xD9\x88...') #8 /home/watanser/public_html/wp-content/plugins/404-solution/404-solution.php(138): ABJ_404_Solution_WordPress_Connector->process404() #9 /home/watanser/public_html/wp-includes/class-wp-hook.php(324): abj404_404listener('') #10 /home/watanser/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #11 /home/watanser/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #12 /home/watanser/public_html/wp-includes/template-loader.php(13): do_action('template_redire...') #13 /home/watanser/public_html/wp-blog-header.php(19): require_once('/home/watanser/...') #14 /home/watanser/public_html/index.php(17): require('/home/watanser/...') #15 {main}