I am setting up a new testing server and I 2 issues.
I am running PHP Version 5.4.22, btw.
I am getting missing file errors and its not seeing the files set in the include path, so I am trying to fix 2 issues.
1) the error about the missing files (and I have the include path set in the php.ini).
2) it displays the errors but does not log them.
1) here is the path include
include_path=".;C:\Program Files (x86)\PHP\pear;..;C:\Program Files (x86)\PHP\includes"
And I verified the paths, they are correct.
2)
error_reporting = E_ALL & ~E_DEPRECATED
log_errors = On
log_errors_max_len = 1024
error_log = "C:\Program Files (x86)\PHP\logs\php-errors.log"
I checked the path in phpinfo.php and it shows the path as.
C:\Program Files (x86)\PHP\includes;
I can't see what I am missing or set incorrectly.
Thanks,
Don