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