Version at: 12/02/2014, 02:31 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.
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
411
512### 11nd February 2014 01AM China time
613
714 * who: sysko
815 * why: restored transliteration for most languages
916 * what: linked nihongoparserd with tatoeba php code mostly
1017 * how:
1118
1219I'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`
1320
1421also 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)
1522
1623also commented temporaly all call to `sinoparserd` as it's not yet restored
1724
1825
1926### 10nd February 2014 11PM China time
2027
2128 * who: sysko
2229 * why: installed nihongoparserd (service to generate japanese reading)
2330 * what: compiled source and installed service
2431 * how:
2532
2633installed:
2734
2835 apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8
2936
3037
3138executed
3239
3340 git clone https://github.com/allan-simon/nihongoparserd.igt
3441 cd nihongoparserd
3542 mkdir build ; cd build ; cmake .. ; make
3643 sudo cp nihongoparserd /usr/local/bin
3744 cd ..
3845 sudo cp conf/nihongoparserd /etc/init.d/
3946 sudo chmod +x /etc/init.d/nihongoparserd
4047 sudo cp conf/default /etc/default/nihongoparserd
4148 sudo useradd -r nihongoparserd
4249
4350start the service
4451
4552 /etc/init.d/nihongoparserd
4653
4754
4855
4956### 9nd February 2014 10AM China time
5057
5158
5259 * who: sysko
5360 * why: reinstall suggestd (service powering tag autocompletion)
5461 * what: compiled source and installed service
5562 * how:
5663
5764
5865installed
5966
6067 apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev
6168
6269
6370compiled suggestd0.9
6471
6572 aclocal
6673 autoconf
6774 automake --add-missing
6875
6976 ./configure
7077 make
7178 make install
7279
7380
7481after created init script in
7582
7683 /etc/init.d/suggestd
7784
7885and configuration file in
7986
8087
8188 /etc/suggestd.xml
8289
8390and default file in
8491
8592 /etc/default/suggestd
8693
8794then create a suggestd user
8895
8996 useradd -r suggestd
9097
9198then finally starting it
9299
93100
94101 /etc/init.d/suggestd start
95102
96103
97104###2nd February 2014 5AM China time
98105
99106 * who: sysko
100107 * why: resolve login problems
101108 * what: used memcache instead of sqlite for storing session
102109 * how:
103110
104111installed:
105112
106113 apt-get install memcached php5-memcache
107114
108115modified: `/etc/php5/apache2/php.ini`
109116
110117```
111118[Session]
112119session.save_handler = memcache
113120session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
114121```
115122
116123
117124
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"
```


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.