I have my include_path set to:
include_path = ".;c:\php\includes;d:\www\home\crnorth\dbutil"
However, it can't find the files even though the files ARE in the directory:
d:\www\home\crnorth\dbutil
PHP Warning: include(/home/crnorth/dbutil/mysql.php): failed to open
stream: No such file or directory in D:\www\CRBA\schedule.php on line 3
PHP Warning: include(): Failed opening
'/home/crnorth/dbutil/mysql.php' for inclusion
(include_path='.;c:\php\includes;d:\www\home\crnorth\dbutil') in
D:\www\CRBA\schedule.php on line 3
PHP Warning: include(/home/crnorth/dbutil/dbconnect.inc): failed to
open stream: No such file or directory in D:\www\CRBA\schedule.php on
line 4
PHP Warning: include(): Failed opening
'/home/crnorth/dbutil/dbconnect.inc' for inclusion
(include_path='.;c:\php\includes;d:\www\home\crnorth\dbutil') in
D:\www\CRBA\schedule.php on line 4
PHP Fatal error: Class 'dbstuff' not found in D:\www\CRBA\schedule.php
on line 26
Here is the offending code:
Line 3: include("/home/crnorth/dbutil/mysql.php");
Line 4: include("/home/crnorth/dbutil/dbconnect.inc");
Line 26: $db = new dbstuff;
I also cannot get it to show the errors in the browser even though I have
error_reporting = E_ALL
display_errors = On