- introductory text

This commit is contained in:
steinm 2011-07-27 07:54:46 +00:00
parent e0e7ec1fcd
commit 27fd51e12d
2 changed files with 19 additions and 0 deletions

16
install/index.php Normal file
View File

@ -0,0 +1,16 @@
<?php
include("../inc/inc.Settings.php");
include("../inc/inc.Language.php");
include("../inc/inc.ClassUI.php");
$settings = new Settings();
UI::htmlStartPage("INSTALL");
UI::contentHeading("letoDMS Installation...");
UI::contentContainerStart();
echo "<h2>".getMLText('settings_install_welcome_title')."</h2>";
echo "<div style=\"width: 600px;\">".getMLText('settings_install_welcome_text')."</div>";
echo '<p><a href="install.php">' . getMLText("settings_start_install") . '</a></p>';
UI::contentContainerEnd();
UI::htmlEndPage();
?>

View File

@ -375,6 +375,9 @@ $text["sequence"] = "Sequence";
$text["set_expiry"] = "Set Expiry";
$text["set_owner_error"] = "Error setting owner";
$text["set_owner"] = "Set Owner";
$text["settings_install_welcome_title"] = "Welcome to the installation of letoDMS";
$text["settings_install_welcome_text"] = "<p>Before you start to install letoDMS make sure you have created a file 'ENABLE_INSTALL_TOOL' in your configuration directory, otherwise the installation will not work. On Unix-System this can easily be done with 'touch conf/ENABLE_INSTALL_TOOL'. After you have finished the installation delete the file.</p><p>letoDMS has very minimal requirements. You will need a mysql database and a php enabled web server. For the lucene full text search, you will also need the Zend framework installed on disk where it can be found by php. Starting with version 3.2.0 of letoDMS ADOdb will not be part of the distribution anymore. Get a copy of it from <a href=\"http://adodb.sourceforge.net/\">http://adodb.sourceforge.net</a> and install it. The path to it can later be set during installation.</p><p>If you like to create the database before you start installation, then just create it manually with your favorite tool, optionally create a database user with access on the database and import one of the database dumps in the configuration directory. The installation script can do that for you as well, but it will need database access with sufficient rights to create databases.</p>";
$text["settings_start_install"] = "Start installation";
$text["settings_activate_module"] = "Activate module";
$text["settings_activate_php_extension"] = "Activate PHP extension";
$text["settings_adminIP"] = "Admin IP";