Welcome to UnableTo.com, where you can state any issue that you are unable to perform and receive answers from other members of the community.

Categories

0 votes
I am attempting to create a CRON job to run in ATT Webhosting but am unable to find the path to PHP. I contacted support and they stated that they do not support CRON jobs. I receive an email that states "php: not found".
by

1 Answer

0 votes

To find the path to PHP you can create a php page with the below code that will show the exact required path.

<?php
echo exec("which php");
?>

I ran this on mine and it output a path of /usr/local/bin/php which is running for me without issue.

by (430 points)
...