How to create CRON job


The software requires cron jobs to be set up in order to automate some of its functions, such storage clean-ups etc.

Step 1: Open terminal in your hosting platform or if you are using cPanel, copy and paste the Step 3 in your Cron Jobs tab.
Step 2: Run crontab -e command

crontab -e
Step 3: Enter following cron job, it is scheduled to run twice a day, include YOURWEBSITE DOMAIN PATH, you can customize frequency as you prefer:

0 0,12 * * * /usr/local/bin/php /home/YOURDOMAINPATH/artisan schedule:run
Step 4: (If using terminal): You can check all local cron jobs that are running via:

crontab -l