I use $_SERVER['DOCUMENT_ROOT']."/lib/sft_required.php"; to include the 'sft_required' file in a PHP script. When I run this file using browser, it works fine but when I run this as a cron job job, it does not work. It seems that the file is not included when we run the script through cron.
|
|
|
Assuming you are running the script directly through cron (as opposed to from a web server accessed by an HTTP request triggered by a cronjob (e.g. by cron running wget)), then of course it doesn't work. There is no server, so |
|||
|
|
|
you could populate the $_SERVER['DOCUMENT_ROOT'] on your own
if the cron file is in document root
if the cron file is one directory above the document root |
|||
|
|
|
|
|||
|
|
|
Reading the documentation should help. Using PHP from the command line |
|||
|
|
|
I answered a similar question here. As people have mentioned, the superglobal $_SERVER isn't defined in CLI situations. In the link is a (so far) foolproof method for obtaining the DOCUMENT_ROOT location. Hope it proves useful. |
|||
|
|
This will get you the same data as |
||||
|
|