• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Path to php binary?

C

corman420

Guest
I have a client who needs to run a cron job. I am using CentOS4 with Plesk 8.2.1 and the latets versions of PHP.

Here is the command:
/usr/bin/php /var/www/vhosts/DOMAINHERE/httpdocs/scripts/admin/jkcron.php > /dev/null

I get the following output:
-bash: /usr/local/bin/php: No such file or directory

I tried /usr/local/bin/php with same results.

I also tried:
lynx --dump http://[B]DOMAIN[/B]/scripts/admin/cronjobs.php > /dev/null

Can anyone point me in the right direction? (I have removed the domain URL for security reasons)

Thanks in advance!
 
try running
Code:
which php

For me that returns
Code:
/usr/bin/php

So in my cron I run it as :
Code:
/usr/bin/php -f /path/to/file >/dev/null 2>&1

if your getting
I get the following output:
-bash: /usr/local/bin/php: No such file or directory

Try making sure that the php file itself isnt looking for a binary somewhere....
 
Back
Top