Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[LetoDMS-3.2.0] - How I installed letoDMS
#1
Hi

<rootdir> is the folder where you want install letoDMS

Step 1 : Download files
-----------------------
- Download letoDMS files here : http://sourceforge.net/projects/mydms/fi...S%203.2.0/
- Download ADOdb files here : http://adodb.sourceforge.net/
- Download LOG files here : http://pear.php.net/package/Log/download/All


Step 2 : Files Installation
---------------------------
- ungzip and untar LetoDMS-3.2.0.tar.gz in <rootdir>
- ungzip and untar LetoDMS_Core-3.2.0.tgz in <rootdir>/LetoDMS_Core
=> you must have <rootdir>/LetoDMS_Core/Core.php
- ungzip and untar adodbxxx.tgz in <rootdir>/adodb
- ungzip and untar Logxxx.tgz in <rootdir>/LetoDMS_Core
=> you must have <rootdir>/LetoDMS_Core/Log/Log.php

Step 3 : Configuration
----------------------
- copy <rootdir>/conf/settings.xml.template to <rootdir>/conf/settings.xml
- edit settings.xml file, search <database TAG and change value :
-> dbDriver = "_DBC_DBTYPE_" ==> mysql
- create file <rootdir>/conf/ENABLE_INSTALL_TOOL
- launch <rootdir>/install/install.php
- set values
- Delete file ENABLE_INSTALL_TOOL if possible
- Edit file : inc/inc.LogInit.php and replace
include("Log.php");
=>
include("<rootdir>/LetoDMS_Core/Log/Log.php");


doudoux


edit: taking into account the different remarks

Reply
#2
(09-24-2011, 11:51 PM)Doudoux Wrote: Hi

<rootdir> is the folder where you want install letoDMS

Step 1 : Download files
-----------------------
- Download letoDMS files here : http://sourceforge.net/projects/mydms/fi...S%203.2.0/
- Download ADOdb files here : http://adodb.sourceforge.net/
- Download LOG files here : http://pear.php.net/package/Log/download/All


Step 2 : Files Installation
---------------------------
- ungzip and untar LetoDMS-3.2.0.tar.gz in <rootdir>
- ungzip and untar LetoDMS_Core-3.2.0.tgz in <rootdir>/LetoDMS
=> you must have <rootdir>/LetoDMS/Core.php
- ungzip and untar adodbxxx.tgz in <rootdir>/adodb
- ungzip and untar Logxxx.tgz in <rootdir>/LetoDMS
=> you must have <rootdir>/LetoDMS/Log/Log.php


- create folder : <rootdir>/data
- create folder : <rootdir>/data/staging
- create folder : <rootdir>/data/lucene


Step 3 : Configuration
----------------------
- copy <rootdir>/conf/settings.xml.template to <rootdir>/conf/settings.xml
- edit settings.xml file, search <database TAG and change value :
-> dbDriver = "_DBC_DBTYPE_" ==> mysql
- create file <rootdir>/conf/ENABLE_INSTALL_TOOL
- launch <rootdir>/install/install.php
- set values
- Delete file ENABLE_INSTALL_TOOL if possible
- Edit file : inc/inc.LogInit.php and replace
include("Log.php");
=>
include("<rootdir>/LetoDMS/Log/Log.php");


doudoux
Thanks for that doudoux worked like a charm.
Reply
#3
First of all, thanks for posting it.

(09-24-2011, 11:51 PM)Doudoux Wrote: <rootdir> is the folder where you want install letoDMS

Step 1 : Download files
-----------------------
- Download letoDMS files here : http://sourceforge.net/projects/mydms/fi...S%203.2.0/
- Download ADOdb files here : http://adodb.sourceforge.net/
- Download LOG files here : http://pear.php.net/package/Log/download/All
LOG is currently only needed for the webdav server

(09-24-2011, 11:51 PM)Doudoux Wrote: Step 2 : Files Installation
---------------------------
- ungzip and untar LetoDMS-3.2.0.tar.gz in <rootdir>
- ungzip and untar LetoDMS_Core-3.2.0.tgz in <rootdir>/LetoDMS
=> you must have <rootdir>/LetoDMS/Core.php
I'd rather put in into <rootdir> and set the configuration variable coreDir to the path.
Even better would be to install LetoDMS_Core as a pear package and leave coreDir empty.

(09-24-2011, 11:51 PM)Doudoux Wrote: - ungzip and untar adodbxxx.tgz in <rootdir>/adodb
- ungzip and untar Logxxx.tgz in <rootdir>/LetoDMS
=> you must have <rootdir>/LetoDMS/Log/Log.php
Log is also a pear package. So if you have a change to install it as a pear package, do it.

(09-24-2011, 11:51 PM)Doudoux Wrote: - create folder : <rootdir>/data
- create folder : <rootdir>/data/staging
- create folder : <rootdir>/data/lucene
This is fine, but rootdir should not be your web servers document root, or you should
protect the directory from direct access through the web server.

(09-24-2011, 11:51 PM)Doudoux Wrote: Step 3 : Configuration
----------------------
- copy <rootdir>/conf/settings.xml.template to <rootdir>/conf/settings.xml
- edit settings.xml file, search <database TAG and change value :
-> dbDriver = "_DBC_DBTYPE_" ==> mysql
- create file <rootdir>/conf/ENABLE_INSTALL_TOOL
- launch <rootdir>/install/install.php
- set values
- Delete file ENABLE_INSTALL_TOOL if possible
- Edit file : inc/inc.LogInit.php and replace
include("Log.php");
=>
include("<rootdir>/LetoDMS/Log/Log.php");
No need to modify inc/inc.LogInit.php if you install Log as pear package or at least at a
place where it can be found by php.

Uwe
Reply
#4
Hi

(09-25-2011, 12:32 PM)steinm Wrote: LOG is currently only needed for the webdav server

I do not use webdav, but i have the message:
Code:
Fatal error: Class 'Log' not found in C:\wamp\www\letoDMS-3.2.0\inc\inc.LogInit.php on line 28

In "op.Login.php" file there :
PHP Code:
include("../inc/inc.LogInit.php"); 
and "inc.LogInit.php" use "log.php"

....

doudoux
Reply
#5
(09-25-2011, 03:39 PM)Doudoux Wrote: In "op.Login.php" file there :
PHP Code:
include("../inc/inc.LogInit.php"); 
and "inc.LogInit.php" use "log.php"

Sorry, you are right. It is included, but it actually doesn't need to. My fault.
inc.LogInit.php is supposed to establish a general log mechanism. The file
is included already, though it's functionality isn't used yet.

Uwe
Reply
#6
(09-26-2011, 02:25 PM)steinm Wrote:
(09-25-2011, 03:39 PM)Doudoux Wrote: In "op.Login.php" file there :
PHP Code:
include("../inc/inc.LogInit.php"); 
and "inc.LogInit.php" use "log.php"

Sorry, you are right. It is included, but it actually doesn't need to. My fault.
inc.LogInit.php is supposed to establish a general log mechanism. The file
is included already, though it's functionality isn't used yet.

Uwe

I'm running Apache 2.2.17 so do I need to install LOG or not, and if not (I'd rather NOT install anything that is not absolutely required), do I have to edit something to prevent the errors above?

Reply
#7
(09-26-2011, 07:44 PM)Jukkax Wrote:
(09-26-2011, 02:25 PM)steinm Wrote:
(09-25-2011, 03:39 PM)Doudoux Wrote: In "op.Login.php" file there :
PHP Code:
include("../inc/inc.LogInit.php"); 
and "inc.LogInit.php" use "log.php"

Sorry, you are right. It is included, but it actually doesn't need to. My fault.
inc.LogInit.php is supposed to establish a general log mechanism. The file
is included already, though it's functionality isn't used yet.

Uwe

I'm running Apache 2.2.17 so do I need to install LOG or not, and if not (I'd rather NOT install anything that is not absolutely required), do I have to edit something to prevent the errors above?

hi Jukkax

if you need help in the technical area please post your question in the technical support or general questions area please

Thanks

LetoDMS
Reply
#8
Hi guys,

I tried the tutorial step by step and it seems to work, except when I key in my data folder directory in the install.php it give this error:

Code:
Content Directory: Error getting text: setting_perms (English)
=> Current value = /var/www/data
=> Create Folder - Create File - Delete File - Delete Folder

Any idea why this is hapening? I cant google or find anything that looks like this error.

Thanks.
Reply
#9
(10-11-2011, 08:34 PM)nutdemon Wrote: Hi guys,

I tried the tutorial step by step and it seems to work, except when I key in my data folder directory in the install.php it give this error:

Code:
Content Directory: Error getting text: setting_perms (English)
=> Current value = /var/www/data
=> Create Folder - Create File - Delete File - Delete Folder

Any idea why this is hapening? I cant google or find anything that looks like this error.

Thanks.

Nothing to worry about. This is just a missing text for the phrase with the key 'setting_perms'. I just wonder why it tries to resolve it. There is no phrase 'setting_perms'.

Uwe
Reply
#10
(10-11-2011, 09:37 PM)steinm Wrote: Nothing to worry about. This is just a missing text for the phrase with the key 'setting_perms'. I just wonder why it tries to resolve it. There is no phrase 'setting_perms'.

Uwe

Hi,

Sorry, it says settings_perms. Because of this error the installation doesnt complete. Whenever I go to index.php, it redirects to out/out.ViewFolder.php. Its a blank page.

Am I missing a step? I have created the required databases and its permissions. Maybe my Apache has to be configured properly?

Thanks Smile
Reply


Forum Jump:


Users browsing this thread: