Magento 2 Cron Error – Fixing ‘Cron Job Has Not Been Configured Yet’ Error

croncrontaberrormagento2

Within the Magento web component wizard, when we try to install extensions, we receive the following error during the Readiness Check:

Check Cron Scripts
Cron script readiness check failed. Hide detail

Error from Updater Application Cron Script:
Cron job has not been configured yet

For additional assistance, see cron scripts help.

We've configured and setup the cron tasks according to the magento documentation, with our resulting cron file looking like this:
cron

From the CLI, we are able to run the cron successfully with magento cron:run so, am I missing something here? Obviously, the cron jobs have been configured, and have been ran, so are there any other potential causes for the readiness check failing with this error?

Best Answer

Instead of /usr/bin/php, please use only php

Example

* * * * * php /var/www/html/..... 

Implement for all & check. It should work :)

Related Topic