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.