https://discuss.flarum.org/d/24118-setup-the-flarum-scheduler-using-cron
I read this post and get to know how to setup. But lately i have an extension not working well.
the Extension (https://extiverse.com/extension/ziiven/flarum-decoration-store) need scheduler supported, like
"* * * * * cd /path-to-your-project && php flarum schedule:run"
And in my Crontab, iv already added
"* * * * * cd /var/www/flarum && php flarum queue:work --stop-when-empty
- * * * * cd /var/www/flarum && php flarum schedule:run >> /dev/null 2>&1
0 0 * * * cd /var/www/flarum && php flarum backup"
The extension is like an subscription extension, ppls can subscribe something by monthly or yearly, after expired, it will automatically renew, but in my case, it doesn't renew, the extension owner said seems my scheduler doesn't configure right.
I want to know scheduler for an extension, do i need to set "path-to-you-project" to exact path of extension, such cd /var/www/flarum/vendor/extension folder?
thanks