+1 to what Sergio said.
To get help from Softac folks, look in upper right hand corner of the Softac screen for a link to their help desk.
Cron job - in your cPanel, there should be an icon for setting up a cron job. That does require one to know the path to php-cli on your system (there are really 2 PHP execs - one that runs web and one that runs from command line).
Now some questions for you ... does your cPanel have the following icons:
1. a Terminal Icon
Terminal will help you find the path to php-cli and the path to your moodle code by typing some commands ([ENTER] means you press the ENTER key on your keyboard):
which php [ENTER]
will show a path to php-cli
To make sure it's php-cli, type: php -v [ENTER] you will see (php-cli) in what that returns.
The other path is the path to your moodle code.
Moodle code has a config-dist.php file so to find the path to moodle code:
find ./ -name config-dist.php [ENTER]
What that command returns is the path to your moodle - minus the config-dist.php, of course.
The Git icon is a way to avoid Softac .. but that's for later discussion/cussion!
'SoS', Ken