The following error message is logged in my codeigniter application:
PHP Warning: include(application/errors/error_php.php): failed to open stream: No such file or directory in /usr/src/dv/system/core/Exceptions.php on line 167, referer: http://localhost/dc
When I open the file /usr/src/dv/system/core/Exceptions.php, I follow line 167:
include(APPPATH.'errors/error_php.php');
APPPATH
value is application /
If I add an absolute path i.e. include('/usr/src/mypath'.APPPATH.'errors/error_php.php');
It works fine.
What should I do? Please suggest. I am new to code igniter.
source share