I was trying to get the cron running on the following .php code : $root = $_SERVER["DOCUMENT_ROOT"]; require_once("open/test.php"); and i got this error : Warning: require_once(open/test.php) [[1]function.require-once]: failed to open stream: No such file or directory in /home/test/public_html/open/test.php on line 4 Fatal error: require_once() [[2]function.require]: Failed opening required 'open/test.php'(include_path='.:/usr/lib/php:/usr/local/lib/php')in /home/test/public_html/open/test.php.php on line 4 Can anyone please kindly help me on that php code please. Thanks Best Regards, Tandiono
You might try to put the entire path to the required file... require_once("/the/entire/path/to/open/test.php"); PHP: