Consider a simple PHP script:
$ pwd
/var/www/site/public_html
$ cat a.php
#!/usr/bin/php -q
<?php
echo "a: ".getcwd();
require_once('b.php');
?>
$ cat b.php
<?php
echo "b: ".getcwd();
?>
$ ./a.php > output
$ cat output
a: /var/www/site/public_html
b: /var/www/site/public_html
I then set up a simple cron job:
* * * * * /var/www/site/public_html/a.php > /var/www/site/public_html/output
However, this is the output after cron has run:
$ cat output
a: /home/user
The path has changed and the require function can no longer find the script to include. Frustratingly, I have another server on which the cron job does keep it's path. I have gone up and done the config options but cannot figure out how to configure PHP to keep the original path even when run as a cron job. How is this done?
Thanks.