The config.inc.php file that is complained about, is that in the same directory as your source file?
(C:\Program Files\nusphere\phped\Projects\)
If it's not, you can either:
* Fix the include_path to include the "C:\Program Files\nusphere\phped\Projects\" directory (in either the php.ini
(not adviseable) or via the ini_set function in your sourcefile:
ini_set ( 'include_path', ini_get ( 'include_path' ) . ':C:\Program Files\nusphere\phped\Projects\' ); |
* Include it with a relative path (if the file is in a subdirectory of your sourcefile)
The current directory (working folder) is always included in the include_path (the '.') so specifying
things like
include ( 'includes/config.inc.php' ); |
usually work perfectly.