Version at: 09/02/2014, 02:30 vs. version at: 10/02/2014, 15:23
11#Admin logs
22
33Please post a description here every time you do a modification on tatoeba.org.
44
55### 9nd February 2014 10AM China time
66
77
88 * who: sysko
99 * why: reinstall suggestd (service powering tag autocompletion)
1010 * what: compiled source and installed service
1111 * how:
1212
1313
1414installed
1515
1616 apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev
1717
1818
1919compiled suggestd0.9
2020
2121 aclocal
2222 autoconf
2323 automake --add-missing
2424
2525 ./configure
2626 make
2727 make install
2828
2929
3030after created init script in
3131
3232 /etc/init.d/suggestd
3333
3434and configuration file in
3535
3636
3737 /etc/suggestd.xml
3838
3939and default file in
4040
4141 /etc/default/suggestd
4242
43then create a suggestd user
44
45 useradd -r suggestd
46
4347then finally starting it
4448
4549
4650 /etc/init.d/suggestd start
4751
4852
4953###2nd February 2014 5AM China time
5054
5155 * who: sysko
5256 * why: resolve login problems
5357 * what: used memcache instead of sqlite for storing session
5458 * how:
5559
5660installed:
5761
5862 apt-get install memcached php5-memcache
5963
6064modified: `/etc/php5/apache2/php.ini`
6165
6266```
6367[Session]
6468session.save_handler = memcache
6569session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15"
6670```
6771
6872
6973
diff view generated by jsdifflib

Version at: 09/02/2014, 02:30

#Admin logs 

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

### 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 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, 15:23

#Admin logs 

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

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