LetoDMS Community Forum
Help... for installation of LetoDMS 2.0 - 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: Help... for installation of LetoDMS 2.0 (/showthread.php?tid=175)



Help... for installation of LetoDMS 2.0 - tomway - 09-27-2010

Hi Admin,

I'm trying to install the LetoDMS into my computer with OS Win7. and I use XAMPP 1.73 for the test environment. (http://www.apachefriends.org/en/xampp-windows.html)
It has:
•Apache 2.2.14 (IPv6 enabled) + OpenSSL 0.9.8l
•MySQL 5.1.41 + PBXT engine
•PHP 5.3.1

I did installation as below:
1. Created DB named letodms2 and executed sql script "create_tables.sql";
2. Exacted whole folder to document root htdocs with name "Letodms2"
3. Modified the "inc.Settings.php"

At last, I typed URL "Http://localhost/letodms2", there are two errors at Languages & Theme:
-Warning: opendir(/letoDMS/languages/) [funcation.opendir]: failed to open dir: No such file or directory in C:\XAM\xampp\htdocs\Letodms2\inc.language.php on line 27 Warning: readdir() wxpects parameter 1 to be resource, boolean given in C:\XAM\xampp\htdocs\Letodms2\inc.language.php on line 29 Warning: closedir() expects parameter 1 to be resource, boolean given in C:\XAM\xampp\htdocs\Letodms2\inc.language.php on line 36
Another similar error at Theme.

And then I log in it with user admin, four errors happened:


Warning: fopen(/letodms2/data/20100927.log) [function.fopen]: failed to open stream: No such file or directory in C:\XAM\xampp\htdocs\Letodms2\inc\inc.Utils.php on line 244

Warning: fwrite() expects parameter 1 to be resource, boolean given in C:\XAM\xampp\htdocs\Letodms2\inc\inc.Utils.php on line 245

Warning: fclose() expects parameter 1 to be resource, boolean given in C:\XAM\xampp\htdocs\Letodms2\inc\inc.Utils.php on line 246

Warning: Cannot modify header information - headers already sent by (output started at C:\XAM\xampp\htdocs\Letodms2\inc\inc.Utils.php:244) in C:\XAM\xampp\htdocs\Letodms2\op\op.Login.php on line 232


I doubted that it is the permission issue from my WIN7...
I added my setting file here, thank you very much for your help!


RE: Help... for installation of LetoDMS 2.0 - turkeburgr - 09-28-2010

I've never actually tried to do this install on Windows but I'm pretty sure its a path issue in your inc.Settings.php. The following must be an absolute path not relative.

// path to where mydms is located
//var $_rootDir = "/var/www/letoDMS-1.10/";
var $_rootDir = "/letoDMS2/";

// Where the uploaded files are stored (best to choose a directory that
// is not accessible through your web-server)
var $_contentDir = "/letodms2/data/";

//Path to adodb
var $_ADOdbPath = "/letoDMS2/adodb/";


RE: Help... for installation of LetoDMS 2.0 - tomway - 09-28-2010

Hi Turkeburgr, thank you very much!!! I got it and solved the issue.