-
Notifications
You must be signed in to change notification settings - Fork 256
/
SETUP.txt
32 lines (24 loc) · 1.13 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
30
31
32
To set up the database for this application,
(1) Create a database if you can do so:
CREATE DATABASE tsugi DEFAULT CHARACTER SET utf8;
CREATE USER 'ltiuser'@'localhost' IDENTIFIED BY 'ltipassword';
CREATE USER 'ltiuser'@'127.0.0.1' IDENTIFIED BY 'ltipassword';
GRANT ALL ON tsugi.* TO ltiuser@'localhost';
GRANT ALL ON tsugi.* To ltiuser@'127.0.0.1';
It is OK if you already have a database 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
cd admin
php upgrade.php
To create the needed tables. Note that in the lti_key table already
has some entries - you can change 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
Sat Feb 3 22:31:40 EST 2024