WP Cron job timeout issues

In my opinion function that works 10min is not a best idea. Can You maybe refactor Your function or simply try to build batch processing? My favorite article about that: https://pippinsplugins.com/batch-processing-for-big-data/

System Cron job not firing

You need to first create the interval for 30 mins. Use filter: add_filter(‘cron_schedules’,’my_cron_schedules’, 999 ); function my_cron_schedules($schedules) { $schedules[‘thirty_min’] = array( ‘interval’ => 1800, // Every 30 mins ‘display’ => __( ‘Every 30 mins’ ), ); return $schedules; } Then you need to execute the scheduled job: wp_schedule_event( time(), ‘thirty_min’, ‘your_event_hook’ ); Then add the … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)