Relative path in cron jobs php
by Prakash[ Edit ] 2011-08-20 11:12:27
Relative paths in cron jobs like:
include 'classes/class.myclass.php';
may not work in cron jobs.
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
Changing the working directory of the file helps
Use the following line before your code to do that
chdir(dirname(__FILE__));