• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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