Relative path in cron jobs php - PHP Views : 188
Tagged in : PHP
0 0
Send mail
Relative paths in cron jobs like:

include 'classes/class.myclass.php';

may not work in cron jobs.

Sad



Because the working directory of the cron may be different from your running file.


But it is time consuming to change every relative path to absolute right Question


Idea

Changing the working directory of the file helps Exclamation


Use the following line before your code to do that Neutral


chdir(dirname(__FILE__));


Cool








By Prakash, On - 2011-08-20



    Login to add Comments .