$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Yoast SEO makes repeated INSERT queries loading any page|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Yoast SEO makes repeated INSERT queries loading any page

matteradmin11PV0评论

By using Query Monitor plugin I found that Yoast SEO (Wordpress SEO) plugin makes repeated INSERT queries to the db when I load any page (dashboard and frontend) of my site.

INSERT INTO `wp_yoast_seo_meta` (`object_id`, 
`internal_link_count`)
VALUES ( '50845', '0' )
ON DUPLICATE KEY
UPDATE `object_id` = VALUES(`object_id`), `internal_link_count` = 
VALUES(`internal_link_count`)

I tried to disable the link suggestion feature in Yoast SEO settings, but the queries are still there.

Can someone give some hints how to solve that?

P.S. The problem is not only this. I also can't dismiss the Yoast SEO notices in the dashboard. When I dismiss the notice and I load any page, the notice is still there.

WP 4.9.8 Yoast SEO 9.1

By using Query Monitor plugin I found that Yoast SEO (Wordpress SEO) plugin makes repeated INSERT queries to the db when I load any page (dashboard and frontend) of my site.

INSERT INTO `wp_yoast_seo_meta` (`object_id`, 
`internal_link_count`)
VALUES ( '50845', '0' )
ON DUPLICATE KEY
UPDATE `object_id` = VALUES(`object_id`), `internal_link_count` = 
VALUES(`internal_link_count`)

I tried to disable the link suggestion feature in Yoast SEO settings, but the queries are still there.

Can someone give some hints how to solve that?

P.S. The problem is not only this. I also can't dismiss the Yoast SEO notices in the dashboard. When I dismiss the notice and I load any page, the notice is still there.

WP 4.9.8 Yoast SEO 9.1

Share Improve this question asked Nov 12, 2018 at 13:41 morris4ever69morris4ever69 1 1
  • It's best to ask this to Yoast. They have a page explaining how to get support. – kero Commented Nov 12, 2018 at 14:20
Add a comment  | 

1 Answer 1

Reset to default 0

I think I solved. It seems that iThemes Security plugin was causing the problems.

After disabling and enabling iThemes Security, the problems with Yoast SEO seems to be solved.

Post a comment

comment list (0)

  1. No comments so far