03-08-2012, 03:37 AM
At least two others ran into the same problem you did. There's an assumption that adodb/adodb.php would be in the include path, but it's not.
Discussed in this thread: http://forums.letodms.com/showthread.php?tid=661
I modified inc.DBAccess.php to add the absolute path to the require_once().
Another approach might be to add the path to adodb.php to the include path with ini_set(), which I did for another issue (my pear packages are not in the default location). I did this in inc.Settings.php with the following line
ini_set('include_path', ini_get('include_path'). ':<path/to/pear>/php');
Discussed in this thread: http://forums.letodms.com/showthread.php?tid=661
I modified inc.DBAccess.php to add the absolute path to the require_once().
Another approach might be to add the path to adodb.php to the include path with ini_set(), which I did for another issue (my pear packages are not in the default location). I did this in inc.Settings.php with the following line
ini_set('include_path', ini_get('include_path'). ':<path/to/pear>/php');