• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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