11-30-2017, 12:13 AM
In the end it was a PHP configuration issue. For some reason I didn't stop to find out, PHP on windows comes configured to NOT look for files in the root directory of execution. In other words, if you are executing in
http://your_server/corebos
PHP will not find any files in the corebos directory.
I added this line in config.inc.php right after the $root_directory definition:
that seemed to fix the issue
Obviously correctly configuring PHP would have worked also.
http://your_server/corebos
PHP will not find any files in the corebos directory.
I added this line in config.inc.php right after the $root_directory definition:
PHP Code:
set_include_path(get_include_path() . PATH_SEPARATOR . $root_directory);
that seemed to fix the issue
Obviously correctly configuring PHP would have worked also.
Joe
TSolucio
TSolucio