We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51f4522 commit b158060Copy full SHA for b158060
1 file changed
README.md
@@ -28,9 +28,28 @@ Or
28
Post Installation
29
-----
30
* MySQL :
31
+ * Set the default to UTF-8 in my.cnf
32
33
+```ini
34
+[client]
35
+default-character-set=utf8
36
+
37
+[mysql]
38
39
40
41
+[mysqld]
42
+collation-server = utf8_unicode_ci
43
+init-connect='SET NAMES utf8'
44
+character-set-server = utf8
45
+```
46
47
+ * Source the schema
48
> mysql -u root -p -e "source /var/www/CGraphz/sql/initial_cgraphz_2.10.sql; source /var/www/CGraphz/sql/upgrade_from_2.10_to_2_20.sql;"
49
50
+ * Submenu in english :
51
+> mysql -u root -p -e "source /var/www/CGraphz/sql/cgraphz_en.sql;"
52
53
* Configuration
54
* Edit /var/www/CGraphz/config/config.php.tpl
55
* Move /var/www/CGraphz/config/config.php.tpl to /var/www/CGraphz/config/config.php
0 commit comments