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


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


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.