• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

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