I am working in php project, its giving the error as:
Warning: require_once(ROOT_PATH/lib/confs/Conf.php) [function.require-once]: failed to open stream: No such file or directory in ..\htdocs\GProject\lib\exception\ExceptionHandler.php on line 20
Fatal error: require_once() [function.require]: Failed opening required 'ROOT_PATH/lib/confs/Conf.php' (include_path='.;C:\php5\pear') in ..\htdocs\GProject\lib\exception\ExceptionHandler.php on line 20
But in \ExceptionHandler.php file, the 20th line is
require_once ROOT_PATH . '/lib/confs/Conf.php'; And I have the file Conf.php under the lib/confs/Conf.php itself, even though I am getting the error.
What may be the problem. Thanks in advance.