![]() |
adodb not found / 3.4RC3 - Printable Version +- LetoDMS Community Forum (https://community.letodms.com) +-- Forum: LetoDMS Support (https://community.letodms.com/forumdisplay.php?fid=4) +--- Forum: Installation Problems (https://community.letodms.com/forumdisplay.php?fid=9) +--- Thread: adodb not found / 3.4RC3 (/showthread.php?tid=572) |
adodb not found / 3.4RC3 - fmm - 10-27-2012 Hi, I still unable to finish the letodms installation. Whatever I do I get the error message: Code: Error In the installation mask I point the path of adodb to the folder in which I have put adodb In addition I have added the adodb to the php path with Code: include_path = ".:/usr/local/lib/php:/usr/local/php5/lib/pear:/home/mydirectory/.php/5.3/adodb" I really would appreciate any help frank[/code] RE: adodb not found / 3.4RC3 - steinm - 10-29-2012 (10-27-2012, 01:48 AM)fmm Wrote: Hi, AdoDB is included as 'adodb/adodb.inc.php'. So could it be that your adodb path should rather be /home/frankmattes/.php/5.3/ ? Uwe RE: SOLVED adodb not found / 3.4RC3 - fmm - 10-30-2012 Just to give feedback. I solved the installation problem. The main problem was that adodb wasn't found, although the path was correctly entered in the filed during the installation. I had to do the following: open Code: /<path to letoDMS>/LetoDMS_Core/Core/inc.DBAccess.php search for the line Code: require_once "/adodb/adodb.inc.php" add the full path to adodb.inc.php Code: require_once "/<full path>/adodb/adodb.inc.php"; After doing this, the installation finished. frank PS: 1) letoDMS is a great piece of software 2) Also with RC3 I can now adding groups whci gave an error in 3.3.9[/php]. RE: SOLVED adodb not found / 3.4RC3 - steinm - 10-30-2012 (10-30-2012, 01:28 PM)fmm Wrote: Just to give feedback. I solved the installation problem. The main problem was that adodb wasn't found, although the path was correctly entered in the filed during the installation.Are you sure it is '/adodb/adodb.inc.php' (with the leading slash) (10-30-2012, 01:28 PM)fmm Wrote: add the full path to adodb.inc.phpThis is an option but it should not be required if adodb/adodb.inc.php is in your path. (10-30-2012, 01:28 PM)fmm Wrote: frank 1. Good to hear you like it 2. 3.3.10 has solved that as well. Uwe RE: SOLVED adodb not found / 3.4RC3 - mikefritzbln - 11-02-2012 (10-30-2012, 04:58 PM)steinm Wrote:(10-30-2012, 01:28 PM)fmm Wrote: Just to give feedback. I solved the installation problem. The main problem was that adodb wasn't found, although the path was correctly entered in the filed during the installation.Are you sure it is '/adodb/adodb.inc.php' (with the leading slash) Hallo, I tried to fix my identical problem with your solve. But it did not work. Nevertheless, my installation stopps with the error, that adodb wasn't found. Thanks for your replies |