09-15-2011, 03:13 PM
I've managed to set a correct path. Got my clue from check.php ~line 350 :
if (file_exists($settings->_ADOdbPath."/adodb/adodb.inc.php"))
It looks like check.php is hardcoded to use "adodb" folder and $_ADOdbPath should be set to point to the folder that contains "adodb", not to directly the "adodb" folder itself. So, I set $_ADOdbPath path to :
/home/my_website/public_html/letodms
(note: without the ending forward slash)
And voila, adodb is finally detected Ok.
if (file_exists($settings->_ADOdbPath."/adodb/adodb.inc.php"))
It looks like check.php is hardcoded to use "adodb" folder and $_ADOdbPath should be set to point to the folder that contains "adodb", not to directly the "adodb" folder itself. So, I set $_ADOdbPath path to :
/home/my_website/public_html/letodms
(note: without the ending forward slash)
And voila, adodb is finally detected Ok.