WP Multisite and cron
-
Hi,
I’ve been having problems with cron after installing Wordfence on a multisite server. It basically added about 200 cron jobs to wordpress, which meant it was scanning all the time. I found a cron controller plugin to delete all the offending jobs, and its looking a lot better now.While I was investigating this I found all the cron jobs are stored in
wp_options. (select * from wp_options where option_name=”cron”)However they were also stored in wp_1_options, wp_2_options, wp_3_options etc. My question is this: should the cron stuff be in the sub-sites options table at all? It seems that its enough to have them in wp_options. If there is a daily task in all the wp_x_options tables, then the task will surely run multiple times each day ??
I created these sites by cloning from another installation, so I’m wondering if the cron entries were mistakenly cloned across, and I can in fact remove them from the sub-sites’ wp_x_options table.
- The topic ‘WP Multisite and cron’ is closed to new replies.