I can confirm that the PHP version is exists. Screenshots are attached. Maybe the issue is because of we have a lot of them, but not only one. (Note: cron from screenshots is the one that was created under the UI, but not with bash script).
Great thanks, I appreciate your help. Will try to...
Unfortunately we have .60 version, so this command is not valid for me yet.
Here is the simple code snippet for you to run on your environment.
#!/bin/bash
temp_cron_file=$(mktemp)
cron_job="15 3 * * * /opt/plesk/php/7.1/bin/php -f 'httpdocs/public/cron.php' -- 'test'"
crontab -l >...
I made a bash script that will create cron jobs in the crontab file.
A bit details: bash script creates type of cron "Run a PHP script" which means that we have script path and arguments if required. Also it is necessary to select the php version in the UI.
The issues I noticed:
1) script...