mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 15:14:58 +00:00
- fixed file names
- added installation of Log
This commit is contained in:
parent
eff84b283d
commit
198a2de484
32
README
32
README
|
@ -38,7 +38,10 @@ application itself (letoDMS-<version>.tar.gz). The core is a pear package
|
||||||
which could be installed as one. It is responsible for all the database
|
which could be installed as one. It is responsible for all the database
|
||||||
operations. The web application contains the gui not knowing anything about
|
operations. The web application contains the gui not knowing anything about
|
||||||
the database layout. Second, one letoDMS installation can be used for
|
the database layout. Second, one letoDMS installation can be used for
|
||||||
various customer instances by sharing a common source.
|
various customer instances by sharing a common source. Starting with
|
||||||
|
version 3.2.0 a full text search engine has been added. This requires
|
||||||
|
the zend framework and another pear package LetoDMS_Lucene-<version>.tar.gz
|
||||||
|
which can be downloaded from the letoDMS web page.
|
||||||
|
|
||||||
Before you proceed you have to decide how to install letoDMS:
|
Before you proceed you have to decide how to install letoDMS:
|
||||||
1. with multiple instances
|
1. with multiple instances
|
||||||
|
@ -55,7 +58,9 @@ at your web hoster.
|
||||||
0. Quick installation instructions (single instance) ===========================
|
0. Quick installation instructions (single instance) ===========================
|
||||||
|
|
||||||
You need a working web server with MySQL/PHP5 support and the files
|
You need a working web server with MySQL/PHP5 support and the files
|
||||||
LetoDMS-<version>.tar.gz and LetoDMS_Core-<version>.tar.gz.
|
LetoDMS-<version>.tar.gz and LetoDMS_Core-<version>.tar.gz. For the
|
||||||
|
full text search engine support, you will also need to unpack
|
||||||
|
LetoDMS_Lucene-<version>.tar.gz.
|
||||||
|
|
||||||
* Unpack all the files in a public web server folder. If you're working on
|
* Unpack all the files in a public web server folder. If you're working on
|
||||||
a host machine your provider will tell you where to upload the files.
|
a host machine your provider will tell you where to upload the files.
|
||||||
|
@ -64,6 +69,10 @@ LetoDMS-<version>.tar.gz and LetoDMS_Core-<version>.tar.gz.
|
||||||
(http://adodb.sourceforge.net/) and unpack it in the letDMS
|
(http://adodb.sourceforge.net/) and unpack it in the letDMS
|
||||||
directory
|
directory
|
||||||
|
|
||||||
|
* The PEAR package Log is also needed. It can be downloaded from
|
||||||
|
http://pear.php.net/package/Log. Unpack it a place where it can be
|
||||||
|
found be php.
|
||||||
|
|
||||||
* Create a data folder somewhere in your web server. The data folder created
|
* Create a data folder somewhere in your web server. The data folder created
|
||||||
by the letoDMS archive should work for a test installation and must be
|
by the letoDMS archive should work for a test installation and must be
|
||||||
writable by the web-server user.
|
writable by the web-server user.
|
||||||
|
@ -80,13 +89,8 @@ For security reason the data folder should not be inside the public folders.
|
||||||
* Import "create_tables.sql" in the new database
|
* Import "create_tables.sql" in the new database
|
||||||
e.g. for mysql:
|
e.g. for mysql:
|
||||||
cat create_tables.sql | mysql -uletodms -p letodms
|
cat create_tables.sql | mysql -uletodms -p letodms
|
||||||
|
* create a file ENABLE_INSTALL_TOOL in the conf directory and point
|
||||||
* Copy conf/conf.Settings.php.template to conf/conf.Settings.php and
|
your browser at http://host/<letodms-dir>/install
|
||||||
edit it to match your preference and settings. At least $_rootDir,
|
|
||||||
$_httpRoot, $_contentDir, $_ADOdbPath, $_coreDir, $_dbHostname,
|
|
||||||
$_dbDatabase, $_dbUser, $_dbPass must be edited. Note that for the
|
|
||||||
path you probably need to ask your provider because the absolute
|
|
||||||
path on the server is not immediatly viewable in a hosted system.
|
|
||||||
|
|
||||||
|
|
||||||
NOTE: UPDATING FROM A PREVIOUS VERSION
|
NOTE: UPDATING FROM A PREVIOUS VERSION
|
||||||
|
@ -122,14 +126,18 @@ You will also need to download and install the ADODB database
|
||||||
abstraction library from http://adodb.sf.net/ unless it is not installed
|
abstraction library from http://adodb.sf.net/ unless it is not installed
|
||||||
on your system already.
|
on your system already.
|
||||||
|
|
||||||
|
If you plan to use the full text search engine you will have to install
|
||||||
|
the zend framework, too.
|
||||||
|
|
||||||
|
|
||||||
2. Installation & Configuration ================================================
|
2. Installation & Configuration ================================================
|
||||||
|
|
||||||
Unzip the downloaded file (LetoDMS-<version>.zip) in a directory that is
|
Unzip the downloaded file (LetoDMS-<version>.tar.gz) in a directory that is
|
||||||
accessible via your web server. Do the same for the file
|
accessible via your web server. Do the same for the file
|
||||||
LetoDMS_Core-<version>.zip. This file may not be unpacked below the
|
LetoDMS_Core-<version>.tgz and LetoDMS_Lucene-<version>.tgz.
|
||||||
|
These files may not be unpacked below the
|
||||||
document root of your web server. Since it is a pear package it can
|
document root of your web server. Since it is a pear package it can
|
||||||
also be installed with 'pear install LetoDMS_Core-<version>.zip'
|
also be installed with 'pear install LetoDMS_Core-<version>.tgz'
|
||||||
|
|
||||||
You will also need to create a directory where the uploaded files are
|
You will also need to create a directory where the uploaded files are
|
||||||
stored. This directory should not be accessible via your web-server for
|
stored. This directory should not be accessible via your web-server for
|
||||||
|
|
Loading…
Reference in New Issue
Block a user