forked from tsugiproject/tsugi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SETUP.txt
29 lines (21 loc) · 1.08 KB
/
SETUP.txt
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
To set up the database for this application,
(1) Create a database if you can do so:
create database tsugi DEFAULT CHARACTER SET utf8;
grant all on tsugi.* to ltiuser@'localhost' identified by 'ltipassword';
grant all on tsugi.* to ltiuser@'127.0.0.1' identified by 'ltipassword';
It is OK if you already have a databse or your hosting provider forces you to
share a database across applications. You can set a prefix for all the
tables in the config.php file
(2) Copy config-dist.php to config.php and update the values as appropriate
If you made a database set the "dbprefix" to an empty string. If you are
sharing a database across several applications, set the prefix to something
like "tsugi_".
(3) Run the
http://hostname/tsugi/admin/upgrade.php
To create the needed tables. Note that in the lti_key table already
has some entries - you can changs the secret in the '12345' entry
if you like. If you want to change the key - also do a new SHA256
calculation as that is used as the indexed logical key. There are
many SHA256 calculators on the web.
/Chuck
Mon Jan 13 20:57:42 EST 2014