-
See my post from above:
I do not know how your cron job is setup. You can go to Studio > Dashboard > click the down arrow by Host Tools and choose "Server Audit".. Scroll down and you should see how your cron job is setup there. Like this:
SHELL="/usr/bin/bash" * * * * * /opt/plesk/php/7.1/bin/php -q /var/www/vhosts/mywebsite.com/httpdocs/periodic/cron.php
Those 5 stars you see there.. * * * * * mean I have mine setup to run every minute.
After that, you would need to login to your backend (Plesk/cPanel/etc) and make sure that the cron is setup properly. I also talk about a way to force it in the original post.
-
i set up cron jobs but i dont see it working. I believe it is well set up because I do not get the email that it is set up wrong.Do you know what can be?
-
The fact that you are not getting success/failure emails when trying to upgrade validates that your cron is NOT working - unless you have the wrong email address setup. The screenshot you attached it really small but it looks like you have this part in the actual command line:
SHELL="/usr/bin/bash" * * * * *
You shouldn't need that in the command. All you should need is this part (your may vary)
/opt/plesk/php/7.1/bin/php -q /var/www/vhosts/mywebsite.com/httpdocs/periodic/cron.php
So try removing the SHELL="/usr/bin/bash" * * * * * part in the command box and see if that will work.
-