ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
setup.php
Go to the documentation of this file.
1 <?php
2 /*
3  +-----------------------------------------------------------------------------+
4  | ILIAS open source |
5  +-----------------------------------------------------------------------------+
6  | Copyright (c) 1998-2008 ILIAS open source, University of Cologne |
7  | |
8  | This program is free software; you can redistribute it and/or |
9  | modify it under the terms of the GNU General Public License |
10  | as published by the Free Software Foundation; either version 2 |
11  | of the License, or (at your option) any later version. |
12  | |
13  | This program is distributed in the hope that it will be useful, |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
16  | GNU General Public License for more details. |
17  | |
18  | You should have received a copy of the GNU General Public License |
19  | along with this program; if not, write to the Free Software |
20  | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
21  +-----------------------------------------------------------------------------+
22 */
23 
36 if (false === file_exists(__DIR__ . '/../libs/composer/vendor/autoload.php')) {
37  echo 'Could not find composers "autoload.php". Try to run "composer install" in the directory ".libs/composer"';
38  exit;
39 }
40 
41 if (php_sapi_name() === "cli") {
42  require_once(__DIR__ . "/cli.php");
43 } else {
44  header("Content-Type: text/html");
45  echo <<<MSG
46 <p>Dear user,</p>
47 <p>the GUI for the setup is abandoned as of ILIAS 7:</p>
48 
49 <p>
50 <a href="https://docu.ilias.de/goto_docu_wiki_wpage_6314_1357.html" target="_blank">Setup - Abandon web based GUI</a><br />
51 <a href="https://docu.ilias.de/goto_docu_wiki_wpage_6391_1357.html" target="_blank">Setup - Abandon Maintenance Mode</a><br />
52 <a href="https://docu.ilias.de/goto_docu_wiki_wpage_6338_1357.html" target="_blank">Setup - Abandon Multi Client</a><br />
53 </p>
54 
55 <p>It is replaced by a command line implementation of the setup:</p>
56 
57 <p>
58 <a href="https://docu.ilias.de/goto_docu_wiki_wpage_5890_1357.html" target="_blank">Setup - Introduce CLI-Setup</a><br />
59 <a href="https://docu.ilias.de/goto_docu_wiki_wpage_6567_1357.html" target="_blank">Setup - Let update-Command change configs</a><br />
60 </p>
61 
62 <p>
63 while the functionality for the maintenance mode and the multi-<br />
64 clients are removed completely as dicussed in the context of<br />
65 the Setup Revision:<br />
66 </p>
67 
68 <p><a href="https://docu.ilias.de/goto_docu_wiki_wpage_4900_1357.html" target="_blank">Setup Revision 2018</a></p>
69 
70 <p>
71 Have a look into a detailed documentation of the setup in the<br />
72 file setup/README.md or take a look into the ILIAS installation<br />
73 instructions at <a href="../docs/configuration/install.md">docs/configuration/install.md</a>.<br />
74 </p>
75 
76 <p>Best regards!</p>
77 MSG;
78 }
exit
Definition: login.php:28
Class ChatMainBarProvider .