Version at: 06/04/2014, 17:34 vs. version at: 06/04/2014, 17:34
11#Admin logs
22
33Please post a description here every time you do a modification on tatoeba.org.
44
55### 6th April 2014 19:00 France time
66
77* who: Trang
88* what:
99
1010```
1111git update-index --assume-unchanged app/app_controller.php
12
1213git update-index --assume-unchanged app/config/core.php
14
1315git update-index --assume-unchanged app/config/database.php
16
1417git update-index --assume-unchanged app/controllers/components/mailer.php
1518```
1619
1720* why: to avoid commiting files with passwords and stuff.
1821
1922### 29th March 2014 22:00 Eastern U.S. time
2023
2124 * who: alanf, guided by Trang
2225 * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html)
2326
2427### 25th March 2014 22:00 Eastern U.S. time
2528
2629 * who: alanf
2730 * why: add audio
2831 * what:
2932 * sync up to most recent commit
3033
3134 * i18n-ized "edited" word
3235
3336 * German UI rework (extensive)
3437
3538 * added audio:
3639
3740 * several dozen sentences by CK
3841
3942 * three sentences by LR
4043
4144### 23rd March 2014 17:30 France time
4245
4346 * who: alanf, guided by Trang
4447 * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html))
4548 * what: https://gist.github.com/trang/baccdee9bea32808f871
4649
4750### 23rd February 2014 15AM China time
4851
4952 * who: sysko
5053 * why: wiki: fixed redirect problem after login and added reset password feature
5154 * what: updated tatowiki on wiki.tatoeba.org to 0.23.0
5255
5356
5457### 11nd February 2014 01AM China time
5558
5659 * who: sysko
5760 * why: restored transliteration for most languages
5861 * what: linked nihongoparserd with tatoeba php code mostly
5962 * how:
6063
6164I'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`
6265
6366also 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)
6467
6568also commented temporaly all call to `sinoparserd` as it's not yet restored
6669
6770
6871### 10nd February 2014 11PM China time
6972
7073 * who: sysko
7174 * why: installed nihongoparserd (service to generate japanese reading)
7275 * what: compiled source and installed service
7376 * how:
7477
7578installed:
7679
7780 apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8
7881
7982
8083executed
8184
8285 git clone https://github.com/allan-simon/nihongoparserd.igt
8386 cd nihongoparserd
8487 mkdir build ; cd build ; cmake .. ; make
8588 sudo cp nihongoparserd /usr/local/bin
8689 cd ..
8790 sudo cp conf/nihongoparserd /etc/init.d/
8891 sudo chmod +x /etc/init.d/nihongoparserd
8992 sudo cp conf/default /etc/default/nihongoparserd
9093 sudo useradd -r nihongoparserd
9194
9295start the service
9396
9497 /etc/init.d/nihongoparserd
9598
9699
97100
98101### 9nd February 2014 10AM China time
99102
100103
101104 * who: sysko
102105 * why: reinstall suggestd (service powering tag autocompletion)
103106 * what: compiled source and installed service
104107 * how:
105108
106109
107110installed
108111
109112 apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev
110113
111114
112115compiled suggestd0.9
113116
114117 aclocal
115118 autoconf
116119 automake --add-missing
117120
118121 ./configure
119122 make
120123 make install
121124
122125
123126after created init script in
124127
125128 /etc/init.d/suggestd
126129
127130and configuration file in
128131
129132
130133 /etc/suggestd.xml
131134
132135and default file in
133136
134137 /etc/default/suggestd
135138
136139then create a suggestd user
137140
138141 useradd -r suggestd
139142
140143then finally starting it
141144
142145
143146 /etc/init.d/suggestd start
144147
145148
146149###2nd February 2014 5AM China time
147150
148151 * who: sysko
149152 * why: resolve login problems
150153 * what: used memcache instead of sqlite for storing session
151154 * how:
152155
153156installed:
154157
155158 apt-get install memcached php5-memcache
156159
157160modified: `/etc/php5/apache2/php.ini`
158161
159162```
160163[Session]
161164session.save_handler = memcache
162165session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
163166```
164167
165168
166169
diff view generated by jsdifflib

Version at: 06/04/2014, 17:34

#Admin logs 

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

### 6th April 2014 19:00 France time

* who: Trang
* what:

```
git update-index --assume-unchanged app/app_controller.php
git update-index --assume-unchanged app/config/core.php
git update-index --assume-unchanged app/config/database.php
git update-index --assume-unchanged app/controllers/components/mailer.php
```

* why: to avoid commiting files with passwords and stuff.

### 29th March 2014 22:00 Eastern U.S. time

   * who: alanf, guided by Trang
   * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html)
    
### 25th March 2014 22:00 Eastern U.S. time

   * who: alanf
   * why: add audio
   * what: 
        * sync up to most recent commit

            * i18n-ized "edited" word

            * German UI rework (extensive)

        * added audio:

            * several dozen sentences by CK

            * three sentences by LR

### 23rd March 2014 17:30 France time

   * who: alanf, guided by Trang
   * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html))
   * 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"
```


version at: 06/04/2014, 17:34

#Admin logs 

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

### 6th April 2014 19:00 France time

* who: Trang
* what:

```
git update-index --assume-unchanged app/app_controller.php

git update-index --assume-unchanged app/config/core.php

git update-index --assume-unchanged app/config/database.php

git update-index --assume-unchanged app/controllers/components/mailer.php
```

* why: to avoid commiting files with passwords and stuff.

### 29th March 2014 22:00 Eastern U.S. time

   * who: alanf, guided by Trang
   * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html)
    
### 25th March 2014 22:00 Eastern U.S. time

   * who: alanf
   * why: add audio
   * what: 
        * sync up to most recent commit

            * i18n-ized "edited" word

            * German UI rework (extensive)

        * added audio:

            * several dozen sentences by CK

            * three sentences by LR

### 23rd March 2014 17:30 France time

   * who: alanf, guided by Trang
   * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html))
   * 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.