Help Center
Getting Started
Zonix AI
Setting Up the Cron Job
Zonix AI uses Laravel's scheduler for subscription renewals, credit resets, and cleanup tasks. You need to add one cron job on your server.
Adding the Cron Job
In cPanel, go to Cron Jobs and add:
* * * * * cd /home/yourusername/public_html && php artisan schedule:run >> /dev/null 2>&1
Replace /home/yourusername/public_html with the actual path to your installation.
Finding Your PHP Path
On some hosts you may need the full PHP path:
* * * * * /usr/local/bin/php /home/yourusername/public_html/artisan schedule:run >> /dev/null 2>&1
Note: Without the cron job, subscription renewals and credit resets will not run automatically.
Last updated May 10, 2026 · 2 views