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