PHP: Require path does not work for cron job?

感情迁移 提交于 2019-11-28 08:59:47

Technically seen the php script is run where cron is located; ex. If cron was in /bin/cron, then this statement would look for common.php in /bin/includes/common.php.

So yeah, you'll probably have to use fullpaths or use set_include_path

set_include_path('/home/username123/public_html/includes/');
require 'common.php';

nono. you need to use absolute paths on crons.

what I do is:

// supouse your cron is on app/cron and your lib is on app/lib
$base = dirname(dirname(__FILE__)); // now $base contains "app"

include_once $base . '/lib/db.inc';

// move on

With all do respect to all the current answers, they all went to "change the php code" approach.

I don't like to change my PHP files just to run it from a cron because it reduces the code portability and increases the chances to forget to change one or two relative paths and break the program.

Instead change the directory at the cron tab line, and leave all your relative paths and your PHP files untouched. For example

1 1 * * * cd /home/username/public_html/&& php -f script.php

check this answer

also check this article, I will quote the relative part

Depending on the code in your PHP script, it may only run correctly when called from a specific directory. For example, if the script uses relative paths to include files, it will only run if it is called from the correct directory. The following command shows how to call a PHP script from a specific directory:

cd /home/username/public_html/; php -q script.php

If the relative path doesn't work, then it means that the current directory set when the cron tasks are running is not /home/username123/public_html. In such cases, you can only use an absolute path.

It sounds as simple as just some script you are running is setting the include_path and you are including that script. use phpinfo() to check the include_path global vs local setting.

An alternative to the solutions which recommend absolute path specification is using a chdir in your script. That way, your relative paths will work as expected.

For example, to change to the directory of the script:

$curr_dir = dirname(__FILE__);
chdir($curr_dir);

To change to the parent directory of the script:

$curr_dir = dirname(__FILE__);
chdir($curr_dir . "/..");

And so forth.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!