Version at: 16/05/2014, 23:46 vs. version at: 01/02/2015, 17:17
1# How to Install the CakePHP Version of the Tatoeba Web App
1# How to Install Tatoeba
22
3NOTE: This is about installing the PHP version (i.e. current version) of Tatoeba.
3Introduction
4---------------
45
5# Downloads
6Unless you are a Windows user, we recommend that you use [IMOUTO](https://github.com/Tatoeba/admin) to install Tatoeba so that you do not have to configure everything manually.
67
7## Required tools
8If you are a Windows user or if for some reason you have issues with IMOUTO, you can still try to set things up manually. This article will try to guide you in doing that.
9
10
11Required tools
12------------------
13
14You will need to install the following:
815
916* Apache
1017* PHP 5.3
1118* MySQL
12* SVN Client
19* Git client
1320* imagick (for resizing images for profile avatars) This can be ignored for local development of the code.
1421
15For those who are on Windows:
22#### Windows users
1623
17* [XAMPP](http://www.apachefriends.org/en/xampp-windows.html) will do the trick for Apache/PHP/MySQL. But you will need to use version 1.7.7 of XAMPP rather than the latest version, because Tatoeba currently uses PHP 5.3.
18* [TortoiseSVN](http://tortoisesvn.net/downloads.html) for the SVN client
24* [XAMPP](http://www.apachefriends.org/en/xampp-windows.html) will do the trick for Apache/PHP/MySQL. But you may need to use version **1.7.7** of XAMPP rather than the latest version, because Tatoeba currently uses PHP 5.3.
25* You can use [Github for Windows](https://windows.github.com/) as your Git client.
1926
20For those who are on Macintosh or Linux:
27#### Mac or Linux users
2128
2229* [XAMPP](http://www.apachefriends.org/en/xampp.html) works, too.
2330
24## Source code
2531
26The source code is hosted on a platform called Assembla:
27[https://www.assembla.com/code/tatoeba2/subversion/nodes](https://www.assembla.com/code/tatoeba2/subversion/nodes)
32Source code
33--------------
2834
29Repository URL:
30[https://subversion.assembla.com/svn/tatoeba2/](https://subversion.assembla.com/svn/tatoeba2/)
35Clone our [Git repository](https://github.com/Tatoeba/tatoeba2).
3136
32URL you'll want to checkout:
33[https://subversion.assembla.com/svn/tatoeba2/trunk/](https://subversion.assembla.com/svn/tatoeba2/trunk/)
37 git clone https://github.com/Tatoeba/tatoeba2.git
38
39Virtual host
40---------------
41
42If you already have some other websites set up on your machine, you will need to set up a virtual host. The point is that instead of going to something like **http://localhost/tatoeba2**, you go to some custom URL. I personally use **http://tatoeba.dev/**.
43
44The reason is because CakePHP will not handle the URL rewriting properly if you try to browse through a subdirectory. You will get some error saying something like "The action tatoeba2 is not defined in controller PagesController".
45
46If you don't know how to set up a virtual host, you should be able to find tutorial by googling it. Here are some links:
47
48* On Mac using XAMPP:
49[http://f6design.com/journal/2012/03/11/configuring-virtualhosts-in-xampp-on-mac/](http://f6design.com/journal/2012/03/11/configuring-virtualhosts-in-xampp-on-mac/)
50* On Windows 7 using XAMPP:
51[http://austinpassy.com/tutorials/setting-up-virtual-hosts-wordpress-multisite-with-xampp-on-windows-7/](http://austinpassy.com/tutorials/setting-up-virtual-hosts-wordpress-multisite-with-xampp-on-windows-7/)
3452
3553
36# Configuration
54Create the config files
55--------------------------
3756
38## Virtual host
57### core.php
3958
40You may set up a virtual host. I personally use http://tatoeba.dev/ as my local URL.
59Copy the file `app/config/core.php.template` and name it `core.php`.
4160
42To find out how to set up a virtual host on a Macintosh using XAMPP see the following page.
43[http://f6design.com/journal/2012/03/11/configuring-virtualhosts-in-xampp-on-mac/](http://f6design.com/journal/2012/03/11/configuring-virtualhosts-in-xampp-on-mac/)
61Make sure you have the search and autotranscription disabled.
4462
45On Windows 7 using XAMPP:
46[http://austinpassy.com/tutorials/setting-up-virtual-hosts-wordpress-multisite-with-xampp-on-windows-7/](http://austinpassy.com/tutorials/setting-up-virtual-hosts-wordpress-multisite-with-xampp-on-windows-7/)
47
48**TODO** More details on how to do that.
49
50## mod_rewrite
51
52You need to have mod_rewrite enabled. It's necessary for CakePHP.
53
54The suggestions on this [CakePHP page](http://book.cakephp.org/2.0/en/installation/url-rewriting.html#apache-and-mod-rewrite-and-htaccess) may help. Alternatively, try replacing the lines "Order deny,allow" and "Deny from all" with "Order allow,deny" and "Allow from all", respectively, rather than simply commenting them out, as the page suggests.
55
56**TODO** More details on how to do that.
63 Configure::write('Search.enabled', false);
64 Configure::write('AutoTranscriptions.enabled', false);
5765
5866
59## app/config/core.php
67### database.php
6068
61Rename `app/config/core.php.template` to `app/config/core.php`.
62
63In the file `app/config/core.php`, put into comments the part about XCache.
64
65 /*
66 Cache::config('default', array(
67 'engine' => 'Xcache', //[required]
68 'duration'=> 3600, //[optional]
69 'probability'=> 100, //[optional]
70 'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string
71 'user' => 'user', //user from xcache.admin.user settings
72 'password' => 'password', //plaintext password (xcache.admin.pass)
73 ));
74 Cache::config('_cake_core_', array(
75 'engine' => 'Xcache', //[required]
76 'duration'=> 3600, //[optional]
77 'probability'=> 100, //[optional]
78 'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string
79 'user' => 'user', //user from xcache.admin.user settings
80 'password' => 'password', //plaintext password (xcache.admin.pass)
81 ));
82 */
83
84And uncomment the line to use the "File" cache engine:
85
86`Cache::config('default', array('engine' => 'File'));`
87
88
89
90## app/config/database.php
91
92Rename `app/config/database.php.template` to `app/config/database.php`.
69Copy the file `app/config/database.php.template` and name it `database.php`.
9370
9471In the file `app/config/database.php`, set your login, password and database in the $default array.
9572
9673 var $default = array(
9774 'driver' => 'mysql',
9875 'persistent' => false,
9976 'host' => 'localhost',
10077 'login' => 'root',
10178 'password' => 'somepassword',
10279 'database' => 'tatoeba',
10380 'prefix' => '',
10481 'encoding' => 'utf8'
10582 );
10683
107
108## app/models/sentence.php
109
110Tatoeba uses some other external tools that you won't necessarily need. These tools are:
111
112* the search engine (Sphinx)
113* the tools for romanization
114
115If you're not going to work on the search or on the romanization and don't want to install these tools, you will have to uncomment a few things in the Sentence model (`app/models/sentence.php`).
116
117line 280: uncomment "return array(1)"
118
119 public function getSeveralRandomIds($lang = 'und', $numberOfIdWanted = 10)
120 {
121 // Uncomment the line below if you don't have sphinx installed.
122 return array(1);
123
124line 772: uncomment "return false"
125
126 public function getRomanization($text,$lang)
127 {
128 // Uncomment the line below you don't have the
129 // romanization tools installed.
130 return false;
131
132line 853: uncomment "return false"
133
134 public function generateMetas(&$sentenceArray)
135 {
136 // Uncomment the line below you don't have the Chinese
137 // romanization tools installed.
138 return false;`
139    
140## Make the following directory writable.
141
142/app/tmp/cache/
143
144## For XAMPP (at least on a Mac)
145
146You'll need to up the default thread_stack from 64K to 256K.
147(I tried 128K, but that wasn't enough.)
148
149/Applications/XAMPP/xamppfiles/etc/my.cnf
150
151thread_stack = 256K
84You don't have to worry about the rest of the file at this stage.
15285
15386
154# Database
15587
156Now you need to create the database, and import the necessary things. The scripts you will need are in the `docs/database` folder.
88Database
89-------------------
15790
158First, create the database. Make sure the name you use here is the name you've set in app/core/database.php. I'll name it `tatoeba`.
91### Create the database
92
93First, create the database. Make sure the name you use here is the name you've set in `app/core/database.php`. I'll name it `tatoeba`.
15994
16095 CREATE DATABASE tatoeba
16196 USE tatoeba
16297
163Then execute the following scripts.
98### Create the tables and import the data
16499
1651. This will create all the tables (they will be empty).
100#### From Trang's database
166101
167 \. docs/database/database_20130406.sql
102The easiest solution is to download the copy of [Trang's local database](https://dl.dropboxusercontent.com/u/953908/tatoeba/tatoeba_database.sql). It contains data from 2010, that is around 600k sentences.
168103
1692. These will create a minimal user base (one user in each group), and the associated access rights for each user. Execute them in order.
104You can import the database with the command:
170105
171 \. docs/database/import/groups.sql
172 \. docs/database/import/users.sql
173 \. docs/database/import/acos.sql
174 \. docs/database/import/aros.sql
175 \. docs/database/import/aros_acos.sql
106 mysql -u username -p database_name < tatoeba_database.sql
176107
1773. This will import the list of countries. It's used in profile.
108All the passwords have been replace so you will be able to log in with the password `123` on any login.
178109
179 \. docs/database/import/countries.sql
110#### From the scripts in docs/database
180111
1814. After you start adding sentences, you will get some errors related to the fact that the table langStats is empty. This table contains lists the different languages in which the sentences are and the number of sentences for each language. So after adding your first sentences, and also everytime you will add sentences in a language that wasn't present before, you will need to execute the following script to update the langStats table:
112Another solution is to execute all the scripts in this order:
182113
183 \. docs/database/scripts/create_fill_langStats.sql
114* scripts in `docs/database/tables`
115* scripts in `docs/database/triggers`
116* scripts in `docs/database/import`
184117
185
186You can fill your database with the [exported CSV files](http://tatoeba.org/files/downloads/). For example, adapt and use the following commands to add sentences:
187
188 cat sentences.csv | while read -r id lang text; do echo "insert into sentences (id, lang, text) values ('$id', '$lang', '${text//\'/\'}');"; done | sudo mysql -u root tatoeba_database
189 cat links.csv | while read -r id1 id2; do echo "insert into sentences_translations (sentence_id, translation_id) values ($id1, $id2);"; done | sudo mysql -u root tatoeba_database
190Expect this to take some time (dozens of minutes) and fill some disk space (several gigabytes).
191
192**TODO** Would probably be nice to have some data for sentences, comments, wall messages as well. Although they can be created manually once logged in.
193
194
195
196
197# Logging in
198
199Now you should be able to go to your local Tatoeba URL (http://tatoeba.dev/ in my case), and be able to log in.
200
201The default usernames are:
118From there you will be able to log in with `123456` with one of the following usernames:
202119
203120* admin
204121* corpus_maintainer
205122* advanced_contributor
206123* contributor
207124* inactive
208125* spammer
209126
210The default password for each user is '123456'.
127
128Other things you may have to configure
129----------------------------------------------
130    
131### tmp folder writable
132
133Make sure your `/app/tmp/cache` is writabe as well as any folder in it (models, persistent, views).
134
135### thread_stack for XAMPP on a Mac
136
137You'll need to up the default thread_stack from 64K to 256K.
138`/Applications/XAMPP/xamppfiles/etc/my.cnf`
139`thread_stack = 256K`
211140
212141
213#External services
214142
215
216 * autocompletion for tags is based on suggestd (TODO put link an explanation on how to compile/use it)
217 * for Chinese/Cantonese the transliteration is generated by sinoparserd (TODO add more explanation)
218 * language autodetection is based on tatodetect
219
220# Other Things to Install
143Other Things to Install
144--------------------------
221145
222146These can be ignored for local development of the code, but need to be installed in order to get the app fully operational.
223147
224148* imagick (for resizing images for profile avatars)
225149* Sphinx search engine
226150* Furigana
151* autocompletion for tags is based on suggestd (TODO put link an explanation on how to compile/use it)
152* for Chinese/Cantonese the transliteration is generated by sinoparserd (TODO add more explanation)
153* language autodetection is based on tatodetect
diff view generated by jsdifflib

Version at: 16/05/2014, 23:46

# How to Install the CakePHP Version of the Tatoeba Web App

NOTE: This is about installing the PHP version (i.e. current version) of Tatoeba.

# Downloads

## Required tools

* Apache
* PHP 5.3
* MySQL
* SVN Client
* imagick (for resizing images for profile avatars) This can be ignored for local development of the code.

For those who are on Windows:

* [XAMPP](http://www.apachefriends.org/en/xampp-windows.html) will do the trick for Apache/PHP/MySQL. But you will need to use version 1.7.7 of XAMPP rather than the latest version, because Tatoeba currently uses PHP 5.3.
* [TortoiseSVN](http://tortoisesvn.net/downloads.html) for the SVN client

For those who are on Macintosh or Linux:

* [XAMPP](http://www.apachefriends.org/en/xampp.html) works, too.

## Source code

The source code is hosted on a platform called Assembla:
[https://www.assembla.com/code/tatoeba2/subversion/nodes](https://www.assembla.com/code/tatoeba2/subversion/nodes)

Repository URL:
[https://subversion.assembla.com/svn/tatoeba2/](https://subversion.assembla.com/svn/tatoeba2/)

URL you'll want to checkout:
[https://subversion.assembla.com/svn/tatoeba2/trunk/](https://subversion.assembla.com/svn/tatoeba2/trunk/)


# Configuration

## Virtual host

You may set up a virtual host. I personally use http://tatoeba.dev/ as my local URL.

To find out how to set up a virtual host on a Macintosh using XAMPP see the following page.
[http://f6design.com/journal/2012/03/11/configuring-virtualhosts-in-xampp-on-mac/](http://f6design.com/journal/2012/03/11/configuring-virtualhosts-in-xampp-on-mac/)

On Windows 7 using XAMPP:
[http://austinpassy.com/tutorials/setting-up-virtual-hosts-wordpress-multisite-with-xampp-on-windows-7/](http://austinpassy.com/tutorials/setting-up-virtual-hosts-wordpress-multisite-with-xampp-on-windows-7/)

**TODO** More details on how to do that.

## mod_rewrite

You need to have mod_rewrite enabled. It's necessary for CakePHP.

The suggestions on this [CakePHP page](http://book.cakephp.org/2.0/en/installation/url-rewriting.html#apache-and-mod-rewrite-and-htaccess) may help. Alternatively, try replacing the lines "Order deny,allow" and "Deny from all" with "Order allow,deny" and "Allow from all", respectively, rather than simply commenting them out, as the page suggests.

**TODO** More details on how to do that.


## app/config/core.php

Rename `app/config/core.php.template` to `app/config/core.php`.

In the file `app/config/core.php`, put into comments the part about XCache.

    /*
    Cache::config('default', array(
        'engine' => 'Xcache', //[required]
        'duration'=> 3600, //[optional]
        'probability'=> 100, //[optional]
        'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string
        'user' => 'user', //user from xcache.admin.user settings
        'password' => 'password', //plaintext password (xcache.admin.pass)
    ));
    Cache::config('_cake_core_', array(
        'engine' => 'Xcache', //[required]
        'duration'=> 3600, //[optional]
        'probability'=> 100, //[optional]
        'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string
        'user' => 'user', //user from xcache.admin.user settings
        'password' => 'password', //plaintext password (xcache.admin.pass)
    ));
    */

And uncomment the line to use the "File" cache engine:

`Cache::config('default', array('engine' => 'File'));`



## app/config/database.php

Rename `app/config/database.php.template` to `app/config/database.php`.

In the file `app/config/database.php`, set your login, password and database in the $default array.

    var $default = array(
        'driver' => 'mysql',
        'persistent' => false,
        'host' => 'localhost',
        'login' => 'root',
        'password' => 'somepassword',
        'database' => 'tatoeba',
        'prefix' => '',
        'encoding' => 'utf8'
    );


## app/models/sentence.php

Tatoeba uses some other external tools that you won't necessarily need. These tools are:

* the search engine (Sphinx)
* the tools for romanization

If you're not going to work on the search or on the romanization and don't want to install these tools, you will have to uncomment a few things in the Sentence model (`app/models/sentence.php`).

line 280: uncomment "return array(1)"

    public function getSeveralRandomIds($lang = 'und',  $numberOfIdWanted = 10)
    {
        // Uncomment the line below if you don't have sphinx installed.
        return array(1);

line 772: uncomment "return false"

    public function getRomanization($text,$lang)
    {
        // Uncomment the line below you don't have the
        // romanization tools installed.
        return false;

line 853: uncomment "return false"

    public function generateMetas(&$sentenceArray) 
    {
        // Uncomment the line below you don't have the Chinese
        // romanization tools installed.
        return false;`
	
## Make the following directory writable.

/app/tmp/cache/

## For XAMPP (at least on a Mac)

You'll need to up the default thread_stack from 64K to 256K.
(I tried 128K, but that wasn't enough.)

/Applications/XAMPP/xamppfiles/etc/my.cnf

thread_stack = 256K


# Database

Now you need to create the database, and import the necessary things. The scripts you will need are in the `docs/database` folder.

First, create the database. Make sure the name you use here is the name you've set in app/core/database.php. I'll name it `tatoeba`.

    CREATE DATABASE tatoeba
    USE tatoeba

Then execute the following scripts.

1. This will create all the tables (they will be empty).

        \. docs/database/database_20130406.sql

2. These will create a minimal user base (one user in each group), and the associated access rights for each user. Execute them in order.

        \. docs/database/import/groups.sql
        \. docs/database/import/users.sql
        \. docs/database/import/acos.sql
        \. docs/database/import/aros.sql
        \. docs/database/import/aros_acos.sql

3. This will import the list of countries. It's used in profile.

        \. docs/database/import/countries.sql

4. After you start adding sentences, you will get some errors related to the fact that the table langStats is empty. This table contains lists the different languages in which the sentences are and the number of sentences for each language. So after adding your first sentences, and also everytime you will add sentences in a language that wasn't present before, you will need to execute the following script to update the langStats table:

        \. docs/database/scripts/create_fill_langStats.sql


You can fill your database with the [exported CSV files](http://tatoeba.org/files/downloads/). For example, adapt and use the following commands to add sentences:

    cat sentences.csv | while read -r id lang text; do echo "insert into sentences (id, lang, text) values ('$id', '$lang', '${text//\'/\'}');"; done | sudo mysql -u root tatoeba_database
    cat links.csv | while read -r id1 id2; do echo "insert into sentences_translations (sentence_id, translation_id) values ($id1, $id2);"; done | sudo mysql -u root tatoeba_database
Expect this to take some time (dozens of minutes) and fill some disk space (several gigabytes).

**TODO** Would probably be nice to have some data for sentences, comments, wall messages as well. Although they can be created manually once logged in.




# Logging in

Now you should be able to go to your local Tatoeba URL (http://tatoeba.dev/ in my case), and be able to log in.

The default usernames are: 

* admin
* corpus_maintainer
* advanced_contributor
* contributor
* inactive
* spammer

The default password for each user is '123456'.


#External services


  * autocompletion for tags is based on suggestd (TODO put link an explanation on how to compile/use it)
  * for Chinese/Cantonese the transliteration is generated by sinoparserd (TODO add more explanation)
  * language autodetection is based on tatodetect 

# Other Things to Install

These can be ignored for local development of the code, but need to be installed in order to get the app fully operational.

* imagick (for resizing images for profile avatars)
* Sphinx search engine
* Furigana

version at: 01/02/2015, 17:17

# How to Install Tatoeba

Introduction
---------------

Unless you are a Windows user, we recommend that you use [IMOUTO](https://github.com/Tatoeba/admin) to install Tatoeba so that you do not have to configure everything manually.

If you are a Windows user or if for some reason you have issues with IMOUTO, you can still try to set things up manually. This article will try to guide you in doing that.


Required tools
------------------

You will need to install the following:

* Apache
* PHP 5.3
* MySQL
* Git client
* imagick (for resizing images for profile avatars) This can be ignored for local development of the code.

#### Windows users

* [XAMPP](http://www.apachefriends.org/en/xampp-windows.html) will do the trick for Apache/PHP/MySQL. But you may need to use version **1.7.7** of XAMPP rather than the latest version, because Tatoeba currently uses PHP 5.3.
* You can use [Github for Windows](https://windows.github.com/) as your Git client.

#### Mac or Linux users

* [XAMPP](http://www.apachefriends.org/en/xampp.html) works, too.


Source code
--------------

Clone our [Git repository](https://github.com/Tatoeba/tatoeba2).

    git clone https://github.com/Tatoeba/tatoeba2.git

Virtual host
---------------

If you already have some other websites set up on your machine, you will need to set up a virtual host. The point is that instead of going to something like **http://localhost/tatoeba2**, you go to some custom URL. I personally use **http://tatoeba.dev/**.

The reason is because CakePHP will not handle the URL rewriting properly if you try to browse through a subdirectory. You will get some error saying something like "The action tatoeba2 is not defined in controller PagesController".

If you don't know how to set up a virtual host, you should be able to find tutorial by googling it. Here are some links:

* On Mac using XAMPP:
[http://f6design.com/journal/2012/03/11/configuring-virtualhosts-in-xampp-on-mac/](http://f6design.com/journal/2012/03/11/configuring-virtualhosts-in-xampp-on-mac/)
* On Windows 7 using XAMPP:
[http://austinpassy.com/tutorials/setting-up-virtual-hosts-wordpress-multisite-with-xampp-on-windows-7/](http://austinpassy.com/tutorials/setting-up-virtual-hosts-wordpress-multisite-with-xampp-on-windows-7/)


Create the config files
--------------------------

### core.php

Copy the file `app/config/core.php.template` and name it `core.php`.

Make sure you have the search and autotranscription disabled.

    Configure::write('Search.enabled', false);
    Configure::write('AutoTranscriptions.enabled', false);


### database.php

Copy the file `app/config/database.php.template` and name it `database.php`.

In the file `app/config/database.php`, set your login, password and database in the $default array.

    var $default = array(
        'driver' => 'mysql',
        'persistent' => false,
        'host' => 'localhost',
        'login' => 'root',
        'password' => 'somepassword',
        'database' => 'tatoeba',
        'prefix' => '',
        'encoding' => 'utf8'
    );

You don't have to worry about the rest of the file at this stage.



Database
-------------------

### Create the database

First, create the database. Make sure the name you use here is the name you've set in `app/core/database.php`. I'll name it `tatoeba`.

    CREATE DATABASE tatoeba
    USE tatoeba

### Create the tables and import the data

#### From Trang's database

The easiest solution is to download the copy of [Trang's local database](https://dl.dropboxusercontent.com/u/953908/tatoeba/tatoeba_database.sql). It contains data from 2010, that is around 600k sentences.

You can import the database with the command:

    mysql -u username -p database_name < tatoeba_database.sql

All the passwords have been replace so you will be able to log in with the password `123` on any login.

#### From the scripts in docs/database

Another solution is to execute all the scripts in this order:

* scripts in `docs/database/tables`
* scripts in `docs/database/triggers`
* scripts in `docs/database/import`

From there you will be able to log in with `123456` with one of the following usernames: 

* admin
* corpus_maintainer
* advanced_contributor
* contributor
* inactive
* spammer


Other things you may have to configure
----------------------------------------------
	
### tmp folder writable

Make sure your `/app/tmp/cache` is writabe as well as any folder in it (models, persistent, views). 

### thread_stack for XAMPP on a Mac

You'll need to up the default thread_stack from 64K to 256K.
`/Applications/XAMPP/xamppfiles/etc/my.cnf`
`thread_stack = 256K`



Other Things to Install
--------------------------

These can be ignored for local development of the code, but need to be installed in order to get the app fully operational.

* imagick (for resizing images for profile avatars)
* Sphinx search engine
* Furigana
* autocompletion for tags is based on suggestd (TODO put link an explanation on how to compile/use it)
* for Chinese/Cantonese the transliteration is generated by sinoparserd (TODO add more explanation)
* language autodetection is based on tatodetect 

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.