Version at: 23/02/2014, 07:59 vs. version at: 23/02/2014, 07:59 | ||
---|---|---|
1 | 1 | #Admin logs |
2 | 2 | |
3 | 3 | Please post a description here every time you do a modification on tatoeba.org. |
4 | 4 | |
5 | 5 | ### 23rd February 2014 15AM China time |
6 | 6 | |
7 | 7 | * who: sysko |
8 | 8 | * why: wiki: fixed redirect problem after login and added reset password feature |
9 | * what: updated tatowiki on wiki.tatoega.org to 0.23.0 | |
9 | * what: updated tatowiki on wiki.tatoeba.org to 0.23.0 | |
10 | 10 | |
11 | 11 | |
12 | 12 | ### 11nd February 2014 01AM China time |
13 | 13 | |
14 | 14 | * who: sysko |
15 | 15 | * why: restored transliteration for most languages |
16 | 16 | * what: linked nihongoparserd with tatoeba php code mostly |
17 | 17 | * how: |
18 | 18 | |
19 | 19 | I've applied [this patch](http://bpaste.net/show/kBOxWpawgedmGieVwIn1/), it's not yet into the SVN (need someone to do it for me, don't remember my SVN accounts). Also note the `romanization` variable would be better named `transliteration` |
20 | 20 | |
21 | 21 | also I've commented the line `return false;` in `getRomanization` file `app/models/sentences.php` as it's supposed to well... deactivate transliteration (for dev environment) |
22 | 22 | |
23 | 23 | also commented temporaly all call to `sinoparserd` as it's not yet restored |
24 | 24 | |
25 | 25 | |
26 | 26 | ### 10nd February 2014 11PM China time |
27 | 27 | |
28 | 28 | * who: sysko |
29 | 29 | * why: installed nihongoparserd (service to generate japanese reading) |
30 | 30 | * what: compiled source and installed service |
31 | 31 | * how: |
32 | 32 | |
33 | 33 | installed: |
34 | 34 | |
35 | 35 | apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8 |
36 | 36 | |
37 | 37 | |
38 | 38 | executed |
39 | 39 | |
40 | 40 | git clone https://github.com/allan-simon/nihongoparserd.igt |
41 | 41 | cd nihongoparserd |
42 | 42 | mkdir build ; cd build ; cmake .. ; make |
43 | 43 | sudo cp nihongoparserd /usr/local/bin |
44 | 44 | cd .. |
45 | 45 | sudo cp conf/nihongoparserd /etc/init.d/ |
46 | 46 | sudo chmod +x /etc/init.d/nihongoparserd |
47 | 47 | sudo cp conf/default /etc/default/nihongoparserd |
48 | 48 | sudo useradd -r nihongoparserd |
49 | 49 | |
50 | 50 | start the service |
51 | 51 | |
52 | 52 | /etc/init.d/nihongoparserd |
53 | 53 | |
54 | 54 | |
55 | 55 | |
56 | 56 | ### 9nd February 2014 10AM China time |
57 | 57 | |
58 | 58 | |
59 | 59 | * who: sysko |
60 | 60 | * why: reinstall suggestd (service powering tag autocompletion) |
61 | 61 | * what: compiled source and installed service |
62 | 62 | * how: |
63 | 63 | |
64 | 64 | |
65 | 65 | installed |
66 | 66 | |
67 | 67 | apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev |
68 | 68 | |
69 | 69 | |
70 | 70 | compiled suggestd0.9 |
71 | 71 | |
72 | 72 | aclocal |
73 | 73 | autoconf |
74 | 74 | automake --add-missing |
75 | 75 | |
76 | 76 | ./configure |
77 | 77 | make |
78 | 78 | make install |
79 | 79 | |
80 | 80 | |
81 | 81 | after created init script in |
82 | 82 | |
83 | 83 | /etc/init.d/suggestd |
84 | 84 | |
85 | 85 | and configuration file in |
86 | 86 | |
87 | 87 | |
88 | 88 | /etc/suggestd.xml |
89 | 89 | |
90 | 90 | and default file in |
91 | 91 | |
92 | 92 | /etc/default/suggestd |
93 | 93 | |
94 | 94 | then create a suggestd user |
95 | 95 | |
96 | 96 | useradd -r suggestd |
97 | 97 | |
98 | 98 | then finally starting it |
99 | 99 | |
100 | 100 | |
101 | 101 | /etc/init.d/suggestd start |
102 | 102 | |
103 | 103 | |
104 | 104 | ###2nd February 2014 5AM China time |
105 | 105 | |
106 | 106 | * who: sysko |
107 | 107 | * why: resolve login problems |
108 | 108 | * what: used memcache instead of sqlite for storing session |
109 | 109 | * how: |
110 | 110 | |
111 | 111 | installed: |
112 | 112 | |
113 | 113 | apt-get install memcached php5-memcache |
114 | 114 | |
115 | 115 | modified: `/etc/php5/apache2/php.ini` |
116 | 116 | |
117 | 117 | ``` |
118 | 118 | [Session] |
119 | 119 | session.save_handler = memcache |
120 | 120 | session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15" |
121 | 121 | ``` |
122 | 122 | |
123 | 123 | |
124 | 124 | |
diff view generated by jsdifflib |
Version at: 23/02/2014, 07:59
#Admin logs Please post a description here every time you do a modification on tatoeba.org. ### 23rd February 2014 15AM China time * who: sysko * why: wiki: fixed redirect problem after login and added reset password feature * what: updated tatowiki on wiki.tatoega.org to 0.23.0 ### 11nd February 2014 01AM China time * who: sysko * why: restored transliteration for most languages * what: linked nihongoparserd with tatoeba php code mostly * how: I've applied [this patch](http://bpaste.net/show/kBOxWpawgedmGieVwIn1/), it's not yet into the SVN (need someone to do it for me, don't remember my SVN accounts). Also note the `romanization` variable would be better named `transliteration` also I've commented the line `return false;` in `getRomanization` file `app/models/sentences.php` as it's supposed to well... deactivate transliteration (for dev environment) also commented temporaly all call to `sinoparserd` as it's not yet restored ### 10nd February 2014 11PM China time * who: sysko * why: installed nihongoparserd (service to generate japanese reading) * what: compiled source and installed service * how: installed: apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8 executed git clone https://github.com/allan-simon/nihongoparserd.igt cd nihongoparserd mkdir build ; cd build ; cmake .. ; make sudo cp nihongoparserd /usr/local/bin cd .. sudo cp conf/nihongoparserd /etc/init.d/ sudo chmod +x /etc/init.d/nihongoparserd sudo cp conf/default /etc/default/nihongoparserd sudo useradd -r nihongoparserd start the service /etc/init.d/nihongoparserd ### 9nd February 2014 10AM China time * who: sysko * why: reinstall suggestd (service powering tag autocompletion) * what: compiled source and installed service * how: installed apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev compiled suggestd0.9 aclocal autoconf automake --add-missing ./configure make make install after created init script in /etc/init.d/suggestd and configuration file in /etc/suggestd.xml and default file in /etc/default/suggestd then create a suggestd user useradd -r suggestd then finally starting it /etc/init.d/suggestd start ###2nd February 2014 5AM China time * who: sysko * why: resolve login problems * what: used memcache instead of sqlite for storing session * how: installed: apt-get install memcached php5-memcache modified: `/etc/php5/apache2/php.ini` ``` [Session] session.save_handler = memcache session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15" ```
version at: 23/02/2014, 07:59
#Admin logs Please post a description here every time you do a modification on tatoeba.org. ### 23rd February 2014 15AM China time * who: sysko * why: wiki: fixed redirect problem after login and added reset password feature * what: updated tatowiki on wiki.tatoeba.org to 0.23.0 ### 11nd February 2014 01AM China time * who: sysko * why: restored transliteration for most languages * what: linked nihongoparserd with tatoeba php code mostly * how: I've applied [this patch](http://bpaste.net/show/kBOxWpawgedmGieVwIn1/), it's not yet into the SVN (need someone to do it for me, don't remember my SVN accounts). Also note the `romanization` variable would be better named `transliteration` also I've commented the line `return false;` in `getRomanization` file `app/models/sentences.php` as it's supposed to well... deactivate transliteration (for dev environment) also commented temporaly all call to `sinoparserd` as it's not yet restored ### 10nd February 2014 11PM China time * who: sysko * why: installed nihongoparserd (service to generate japanese reading) * what: compiled source and installed service * how: installed: apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8 executed git clone https://github.com/allan-simon/nihongoparserd.igt cd nihongoparserd mkdir build ; cd build ; cmake .. ; make sudo cp nihongoparserd /usr/local/bin cd .. sudo cp conf/nihongoparserd /etc/init.d/ sudo chmod +x /etc/init.d/nihongoparserd sudo cp conf/default /etc/default/nihongoparserd sudo useradd -r nihongoparserd start the service /etc/init.d/nihongoparserd ### 9nd February 2014 10AM China time * who: sysko * why: reinstall suggestd (service powering tag autocompletion) * what: compiled source and installed service * how: installed apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev compiled suggestd0.9 aclocal autoconf automake --add-missing ./configure make make install after created init script in /etc/init.d/suggestd and configuration file in /etc/suggestd.xml and default file in /etc/default/suggestd then create a suggestd user useradd -r suggestd then finally starting it /etc/init.d/suggestd start ###2nd February 2014 5AM China time * who: sysko * why: resolve login problems * what: used memcache instead of sqlite for storing session * how: installed: apt-get install memcached php5-memcache modified: `/etc/php5/apache2/php.ini` ``` [Session] session.save_handler = memcache session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15" ```