-
Notifications
You must be signed in to change notification settings - Fork 24
/
check.php
56 lines (49 loc) · 2.25 KB
/
check.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
// This does a lot of sanity checking and leads the admin through
// the install process
if ( isset($CFG) ) return; // Do not allow indirect calls
define('COOKIE_SESSION', true);
if ( ! file_exists('tsugi') ) {
echo('<p style="color:red">'."\n");
echo("This site needs Tsugi to function, please check out and configure\n");
echo("a copy of Tsugi as a subfolder:\n");
echo("<pre>\n");
echo(" cd ".__DIR__."\n");
echo(" git clone https://github.com/tsugiproject/tsugi\n");
echo("</pre>\n");
echo("</p>\n");
die();
}
if ( ! file_exists('tsugi/config.php') ) {
echo('<p style="color:red">'."\n");
echo("You have not yet configured your instance of Tsugi.
</p><p>
Please copy tsugi/config-dist.php to tsugi/config.php and edit
config.php according to the installation instructions.
See http://www.tsugi.org/ for complete installation instructions.
</p><p>
Since you are embedding Tsugi into this web site,
make sure to set several *additional* configuration parameters:\n");
echo("<pre>\n");
echo("On a production server:\n");
echo(' $apphome = \'https://www.wa4e.com\'; // For the site'."\n");
echo(' $wwwroot = \'https://www.wa4e.com/tsugi\'; // For Tsugi'."\n");
echo(" ...\n");
echo("\nor on localhost:\n");
echo(' $apphome = \'http://localhost:8888/wa4e\'; // For the site'."\n");
echo(' $wwwroot = \'http://localhost:8888/wa4e/tsugi\'; // For Tsugi'."\n");
echo(" ...\n");
echo("\nand to scan for tools and install modules at the parent level:\n");
echo(' $CFG->tool_folders = array("admin", "../tools", "../mod");'."\n");
echo(' $CFG->install_folder = $CFG->dirroot."/../mod";'."\n");
echo("\nSet the name of the 'course' the site is hosting and\n");
echo("point to the lessons.json file:\n\n");
echo(' $CFG->context_title = "Web Applications for Everybody";'."\n");
echo(' $CFG->lessons = $CFG->dirroot."/../lessons.json";'."\n");
echo("\nMake sure to configure all the values indicated for 'Embedded Tsugi' in the config.php.\n");
echo("</pre>\n");
echo("</p>\n");
die();
}
require_once("tsugi/config.php");
require_once("tsugi/admin/sanity.php");