We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When cron is enabled and scheduler is used in ocms, then the startup process blocks.
instead of
php artisan schedule:run # required to prime db connection cron echo 'Cron enabled.'
should be
echo 'Adding crontab job' echo "* * * * * /usr/local/bin/php /var/www/html/artisan schedule:run > /proc/1/fd/1 2>/proc/1/fd/2" | tee -a /var/spool/cron/root echo 'Starting cron service' service cron start echo 'Cron enabled.'
The text was updated successfully, but these errors were encountered:
Thanks @TimFoerster, I've been wanting to address the cron process differently. I'll give this a try.
Sorry, something went wrong.
No branches or pull requests
When cron is enabled and scheduler is used in ocms, then the startup process blocks.
instead of
should be
The text was updated successfully, but these errors were encountered: