I'm using WooZone 8.0+ but I still want to use the cPanel cron job

 

After you update the woozone plugin to version 8.0 or greater and you use cPanel to setup cron jobs, please take your time and read the "How to Replace WordPress Cron With A Real Cron Job" section of the plugin new module "cronjobs" wp-admin/admin.php?page=wwcAmzAff#!/cronjobs

Basically you'll use now the following line (also with adjustments depending on your web hosting server) and set it to run every 2 minutes:

wget -q -O - http://your-wordpress-website.com/wp-cron.php?doing_wp_cron >/dev/null 2>&1

to setup cron system. 

The wp-cron.php?doing_wp_cron replace the do-cron.php or do-cron-assets.php used in older plugin versions.

And then activate the wp hooks for the cronjobs you want activated, see bellow:

Back To Top