-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUPGRADE
38 lines (20 loc) · 848 Bytes
/
UPGRADE
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
OPENEXAM PHP - UPGRADE INSTRUCTIONS
** WEB APPLICATION:
o) From source code:
bash$> tar xfvzp openexam-online.tar.gz -C ${appdir}
o) From SVN:
bash$> cd ${appdir}/openexam-online
bash$> svn up
** COMPOSER:
Use Composer to update dependencies:
bash$> cd ${appdir}/openexam-online
bash$> composer update --no-dev
** CONFIGURATION:
Manual merge any configuration changes:
bash$> cd ${appdir}/openexam-online/phalcon-mvc/app/config
bash$> for f in *.in; do diff -Naur ${f%%.in} $f; done
** DATABASE:
Use the Phalcon Developer Tools (phalcon/devtools) for upgrading the database schema:
bash$> cd ${appdir}/openexam-online/phalcon-mvc
bash$> ../vendor/bin/phalcon.php migration run --migrations=schemas/migrations
// Anders Lövgren, 2014-09-04