7e77f23a9f1a7249c365e091b2595a12e7db7f85
[atutor.git] / mods / atutor_opencaps / opencaps / install / config_template.php
1 <?php
2 /*
3  * OpenCaps
4  * http://opencaps.atrc.utoronto.ca
5  * 
6  * Copyright 2009 Heidi Hazelton
7  * Adaptive Technology Resource Centre, University of Toronto
8  * 
9  * Licensed under the Educational Community License (ECL), Version 2.0. 
10  * You may not use this file except in compliance with this License.
11  * http://www.opensource.org/licenses/ecl2.php
12  * 
13  */
14
15 /* edit with correct values and copy to /include/config.inc.php */
16
17
18 /* general config */
19 define('MAX_FILE_SIZE', '10485760'); //10M
20 define('DISABLE_LOCAL', false);
21 define('ACTIVE_SYSTEM', '');
22
23
24 /* mysql config */
25 define('DB_USER',               'root');
26 define('DB_PASSWORD',   'password');
27 define('DB_HOST',               'localhost');
28 define('DB_PORT',               '3306');
29 define('DB_NAME',       'opencaps');
30
31 /* matterhorn config */
32 /*
33 $systems[0]['url'] = 'http://localhost:8080';
34 $systems[0]['name'] = 'Matterhorn Local';
35 $systems[0]['username'] = 'username';
36 $systems[0]['password'] = 'password';
37
38 $systems[1]['url'] = 'http://nightly.opencastproject.org';
39 $systems[1]['name'] = 'Matterhorn Nightly';
40 $systems[1]['username'] = 'username';
41 $systems[1]['password'] = 'password';
42 */
43
44 ?>