Skip to content
Stackposts
Product guide

Cron Jobs

Configure Laravel scheduler and background automation tasks.

1 min read

Cron Jobs

Required Laravel cron

  • Add one cron entry that runs every minute.
  • * * * * * cd /path/to/waziper && php artisan schedule:run >> /dev/null 2>&1

Why cron is required

  • Cron is used for scheduled campaigns, recurring maintenance, subscription checks, notifications, and other scheduled Laravel tasks.
  • If cron is not configured, scheduled sends and time-based features may not run.

Checklist

  • Use the correct PHP binary for your hosting account.
  • Use the full absolute path to the Laravel application.
  • Confirm the server timezone and Waziper timezone settings are correct.
Still need help?

Tell us where you are stuck.

Share the product, the step you reached, and any error shown. Our team can point you in the right direction.