Hi I couldn't make sense cron path.
Akaunting give me this script "php /path-to-akaunting/artisan schedule:run >> /dev/null 2>&1"
I changed this script "php http://panel.****.com/artisan schedule:run >> /dev/null 2>&1" but when i try this url, there is no response. How to change this script ?
That's not the web path but file path like:
/home/denis/public_html/artisan
php -q /home/marzico/admin.marzi.co.za/artisan schedule:run >> /dev/null 2>&1
Hi, i put as above in cpanel, and i've even ran it manually, but its not running the schedule.I set it as daily for testing purpose. I am getting no errors in the cron log except that it shows that its running. I had removed the -q also, no luck.
-bash-4.2# php artisan schedule:run
No scheduled commands are ready to run.
Hi:
I am also having the same exact problem as Mohammad, in a previous thread a Akaunting member told me that there is a issue with recurrent invoice/bills, and they will fix this in the next version.
So we just have to wait.
You need to run the schedule command every minute, because this is how Laravel works with it.
So, lets say you plan the scheduling to 6:00.
Then it might just work exactly at this hour and minute.
You can also manually fire each scheduling command manually anytime you want.
For the invoice reminder just do it like this:
php artisan reminder:invoice
Cheers
Dan
Nothing is generated automatically via the cron command. Manuel with "php artisan reminder: invoice" is fine.