Version at: 10/02/2014, 17:42 vs. version at: 12/02/2014, 02:31
11#Admin logs
22
33Please post a description here every time you do a modification on tatoeba.org.
44
55### 11nd February 2014 01AM China time
66
77 * who: sysko
88 * why: restored transliteration for most languages
99 * what: linked nihongoparserd with tatoeba php code mostly
1010 * how:
1111
1212I'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`
1313
1414also 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)
1515
1616also commented temporaly all call to `sinoparserd` as it's not yet restored
1717
1818
1919### 10nd February 2014 11PM China time
2020
2121 * who: sysko
2222 * why: installed nihongoparserd (service to generate japanese reading)
2323 * what: compiled source and installed service
2424 * how:
2525
2626installed:
2727
28 apt-get install git cmake g++ libmecab-dev mecab-jumandict-utf8
28 apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8
2929
3030
3131executed
3232
3333 git clone https://github.com/allan-simon/nihongoparserd.igt
3434 cd nihongoparserd
3535 mkdir build ; cd build ; cmake .. ; make
3636 sudo cp nihongoparserd /usr/local/bin
3737 cd ..
3838 sudo cp conf/nihongoparserd /etc/init.d/
3939 sudo chmod +x /etc/init.d/nihongoparserd
4040 sudo cp conf/default /etc/default/nihongoparserd
4141 sudo useradd -r nihongoparserd
4242
4343start the service
4444
4545 /etc/init.d/nihongoparserd
4646
4747
4848
4949### 9nd February 2014 10AM China time
5050
5151
5252 * who: sysko
5353 * why: reinstall suggestd (service powering tag autocompletion)
5454 * what: compiled source and installed service
5555 * how:
5656
5757
5858installed
5959
6060 apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev
6161
6262
6363compiled suggestd0.9
6464
6565 aclocal
6666 autoconf
6767 automake --add-missing
6868
6969 ./configure
7070 make
7171 make install
7272
7373
7474after created init script in
7575
7676 /etc/init.d/suggestd
7777
7878and configuration file in
7979
8080
8181 /etc/suggestd.xml
8282
8383and default file in
8484
8585 /etc/default/suggestd
8686
8787then create a suggestd user
8888
8989 useradd -r suggestd
9090
9191then finally starting it
9292
9393
9494 /etc/init.d/suggestd start
9595
9696
9797###2nd February 2014 5AM China time
9898
9999 * who: sysko
100100 * why: resolve login problems
101101 * what: used memcache instead of sqlite for storing session
102102 * how:
103103
104104installed:
105105
106106 apt-get install memcached php5-memcache
107107
108108modified: `/etc/php5/apache2/php.ini`
109109
110110```
111111[Session]
112112session.save_handler = memcache
113113session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
114114```
115115
116116
117117
diff view generated by jsdifflib

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"
```


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"
```


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.