Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
The APS Catalog has been deprecated and removed from all Plesk Obsidian versions. Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.
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...