Version at: 10/02/2014, 15:55 vs. version at: 10/02/2014, 17:42
11#Admin logs
22
33Please post a description here every time you do a modification on tatoeba.org.
4
5### 11nd February 2014 01AM China time
6
7 * who: sysko
8 * why: restored transliteration for most languages
9 * what: linked nihongoparserd with tatoeba php code mostly
10 * how:
11
12I'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
14also 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
16also commented temporaly all call to `sinoparserd` as it's not yet restored
17
418
519### 10nd February 2014 11PM China time
620
721 * who: sysko
822 * why: installed nihongoparserd (service to generate japanese reading)
923 * what: compiled source and installed service
1024 * how:
1125
1226installed:
1327
1428 apt-get install git cmake g++ libmecab-dev mecab-jumandict-utf8
1529
1630
1731executed
1832
1933 git clone https://github.com/allan-simon/nihongoparserd.igt
2034 cd nihongoparserd
2135 mkdir build ; cd build ; cmake .. ; make
2236 sudo cp nihongoparserd /usr/local/bin
2337 cd ..
2438 sudo cp conf/nihongoparserd /etc/init.d/
2539 sudo chmod +x /etc/init.d/nihongoparserd
2640 sudo cp conf/default /etc/default/nihongoparserd
2741 sudo useradd -r nihongoparserd
2842
2943start the service
3044
3145 /etc/init.d/nihongoparserd
3246
3347
3448
3549### 9nd February 2014 10AM China time
3650
3751
3852 * who: sysko
3953 * why: reinstall suggestd (service powering tag autocompletion)
4054 * what: compiled source and installed service
4155 * how:
4256
4357
4458installed
4559
4660 apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev
4761
4862
4963compiled suggestd0.9
5064
5165 aclocal
5266 autoconf
5367 automake --add-missing
5468
5569 ./configure
5670 make
5771 make install
5872
5973
6074after created init script in
6175
6276 /etc/init.d/suggestd
6377
6478and configuration file in
6579
6680
6781 /etc/suggestd.xml
6882
6983and default file in
7084
7185 /etc/default/suggestd
7286
7387then create a suggestd user
7488
7589 useradd -r suggestd
7690
7791then finally starting it
7892
7993
8094 /etc/init.d/suggestd start
8195
8296
8397###2nd February 2014 5AM China time
8498
8599 * who: sysko
86100 * why: resolve login problems
87101 * what: used memcache instead of sqlite for storing session
88102 * how:
89103
90104installed:
91105
92106 apt-get install memcached php5-memcache
93107
94108modified: `/etc/php5/apache2/php.ini`
95109
96110```
97111[Session]
98112session.save_handler = memcache
99113session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
100114```
101115
102116
103117
diff view generated by jsdifflib

Version at: 10/02/2014, 15:55

#Admin logs 

Please post a description here every time you do a modification on tatoeba.org. 

### 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-jumandict-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: 10/02/2014, 17:42

#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-jumandict-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.