Version at: 23/02/2014, 07:59 vs. version at: 23/03/2014, 16:47
11#Admin logs
22
33Please post a description here every time you do a modification on tatoeba.org.
4
5### 23rd March 2014 17:30 France time
6
7 * who: alanf, guided by Trang
8 * why: release code on github
9 * what: https://gist.github.com/trang/baccdee9bea32808f871
410
511### 23rd February 2014 15AM China time
612
713 * who: sysko
814 * why: wiki: fixed redirect problem after login and added reset password feature
915 * what: updated tatowiki on wiki.tatoeba.org to 0.23.0
1016
1117
1218### 11nd February 2014 01AM China time
1319
1420 * who: sysko
1521 * why: restored transliteration for most languages
1622 * what: linked nihongoparserd with tatoeba php code mostly
1723 * how:
1824
1925I'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`
2026
2127also 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)
2228
2329also commented temporaly all call to `sinoparserd` as it's not yet restored
2430
2531
2632### 10nd February 2014 11PM China time
2733
2834 * who: sysko
2935 * why: installed nihongoparserd (service to generate japanese reading)
3036 * what: compiled source and installed service
3137 * how:
3238
3339installed:
3440
3541 apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8
3642
3743
3844executed
3945
4046 git clone https://github.com/allan-simon/nihongoparserd.igt
4147 cd nihongoparserd
4248 mkdir build ; cd build ; cmake .. ; make
4349 sudo cp nihongoparserd /usr/local/bin
4450 cd ..
4551 sudo cp conf/nihongoparserd /etc/init.d/
4652 sudo chmod +x /etc/init.d/nihongoparserd
4753 sudo cp conf/default /etc/default/nihongoparserd
4854 sudo useradd -r nihongoparserd
4955
5056start the service
5157
5258 /etc/init.d/nihongoparserd
5359
5460
5561
5662### 9nd February 2014 10AM China time
5763
5864
5965 * who: sysko
6066 * why: reinstall suggestd (service powering tag autocompletion)
6167 * what: compiled source and installed service
6268 * how:
6369
6470
6571installed
6672
6773 apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev
6874
6975
7076compiled suggestd0.9
7177
7278 aclocal
7379 autoconf
7480 automake --add-missing
7581
7682 ./configure
7783 make
7884 make install
7985
8086
8187after created init script in
8288
8389 /etc/init.d/suggestd
8490
8591and configuration file in
8692
8793
8894 /etc/suggestd.xml
8995
9096and default file in
9197
9298 /etc/default/suggestd
9399
94100then create a suggestd user
95101
96102 useradd -r suggestd
97103
98104then finally starting it
99105
100106
101107 /etc/init.d/suggestd start
102108
103109
104110###2nd February 2014 5AM China time
105111
106112 * who: sysko
107113 * why: resolve login problems
108114 * what: used memcache instead of sqlite for storing session
109115 * how:
110116
111117installed:
112118
113119 apt-get install memcached php5-memcache
114120
115121modified: `/etc/php5/apache2/php.ini`
116122
117123```
118124[Session]
119125session.save_handler = memcache
120126session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
121127```
122128
123129
124130
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.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, 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"
```


Note

The lines in green are the lines that have been added in the new version. The lines in red are those that have been removed.