Version at: 03/05/2014, 08:32 vs. version at: 16/05/2014, 23:46
11# How to Install the CakePHP Version of the Tatoeba Web App
22
33NOTE: This is about installing the PHP version (i.e. current version) of Tatoeba.
44
55# Downloads
66
77## Required tools
88
99* Apache
1010* PHP 5.3
1111* MySQL
1212* SVN Client
1313* imagick (for resizing images for profile avatars) This can be ignored for local development of the code.
1414
1515For those who are on Windows:
1616
1717* [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.
1818* [TortoiseSVN](http://tortoisesvn.net/downloads.html) for the SVN client
1919
2020For those who are on Macintosh or Linux:
2121
2222* [XAMPP](http://www.apachefriends.org/en/xampp.html) works, too.
2323
2424## Source code
2525
2626The source code is hosted on a platform called Assembla:
2727[https://www.assembla.com/code/tatoeba2/subversion/nodes](https://www.assembla.com/code/tatoeba2/subversion/nodes)
2828
2929Repository URL:
3030[https://subversion.assembla.com/svn/tatoeba2/](https://subversion.assembla.com/svn/tatoeba2/)
3131
3232URL you'll want to checkout:
3333[https://subversion.assembla.com/svn/tatoeba2/trunk/](https://subversion.assembla.com/svn/tatoeba2/trunk/)
3434
3535
3636# Configuration
3737
3838## Virtual host
3939
4040You may set up a virtual host. I personally use http://tatoeba.dev/ as my local URL.
4141
4242To find out how to set up a virtual host on a Macintosh using XAMPP see the following page.
4343[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/)
4444
4545On Windows 7 using XAMPP:
4646[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/)
4747
4848**TODO** More details on how to do that.
4949
5050## mod_rewrite
5151
5252You need to have mod_rewrite enabled. It's necessary for CakePHP.
5353
5454The 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.
5555
5656**TODO** More details on how to do that.
5757
5858
5959## app/config/core.php
60
61Rename `app/config/core.php.template` to `app/config/core.php`.
6062
6163In the file `app/config/core.php`, put into comments the part about XCache.
6264
6365 /*
6466 Cache::config('default', array(
6567 'engine' => 'Xcache', //[required]
6668 'duration'=> 3600, //[optional]
6769 'probability'=> 100, //[optional]
6870 'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string
6971 'user' => 'user', //user from xcache.admin.user settings
7072 'password' => 'password', //plaintext password (xcache.admin.pass)
7173 ));
7274 Cache::config('_cake_core_', array(
7375 'engine' => 'Xcache', //[required]
7476 'duration'=> 3600, //[optional]
7577 'probability'=> 100, //[optional]
7678 'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string
7779 'user' => 'user', //user from xcache.admin.user settings
7880 'password' => 'password', //plaintext password (xcache.admin.pass)
7981 ));
8082 */
8183
8284And uncomment the line to use the "File" cache engine:
8385
8486`Cache::config('default', array('engine' => 'File'));`
8587
8688
8789
8890## app/config/database.php
8991
92Rename `app/config/database.php.template` to `app/config/database.php`.
93
9094In the file `app/config/database.php`, set your login, password and database in the $default array.
9195
9296 var $default = array(
9397 'driver' => 'mysql',
9498 'persistent' => false,
9599 'host' => 'localhost',
96100 'login' => 'root',
97101 'password' => 'somepassword',
98102 'database' => 'tatoeba',
99103 'prefix' => '',
100104 'encoding' => 'utf8'
101105 );
102106
103107
104108## app/models/sentence.php
105109
106110Tatoeba uses some other external tools that you won't necessarily need. These tools are:
107111
108112* the search engine (Sphinx)
109113* the tools for romanization
110114
111115If 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`).
112116
113117line 280: uncomment "return array(1)"
114118
115119 public function getSeveralRandomIds($lang = 'und', $numberOfIdWanted = 10)
116120 {
117121 // Uncomment the line below if you don't have sphinx installed.
118122 return array(1);
119123
120124line 772: uncomment "return false"
121125
122126 public function getRomanization($text,$lang)
123127 {
124128 // Uncomment the line below you don't have the
125129 // romanization tools installed.
126130 return false;
127131
128132line 853: uncomment "return false"
129133
130134 public function generateMetas(&$sentenceArray)
131135 {
132136 // Uncomment the line below you don't have the Chinese
133137 // romanization tools installed.
134138 return false;`
135139    
136140## Make the following directory writable.
137141
138142/app/tmp/cache/
139143
140144## For XAMPP (at least on a Mac)
141145
142146You'll need to up the default thread_stack from 64K to 256K.
143147(I tried 128K, but that wasn't enough.)
144148
145149/Applications/XAMPP/xamppfiles/etc/my.cnf
146150
147151thread_stack = 256K
148152
149153
150154# Database
151155
152156Now you need to create the database, and import the necessary things. The scripts you will need are in the `docs/database` folder.
153157
154158First, 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`.
155159
156160 CREATE DATABASE tatoeba
157161 USE tatoeba
158162
159163Then execute the following scripts.
160164
1611651. This will create all the tables (they will be empty).
162166
163167 \. docs/database/database_20130406.sql
164168
1651692. These will create a minimal user base (one user in each group), and the associated access rights for each user. Execute them in order.
166170
167171 \. docs/database/import/groups.sql
168172 \. docs/database/import/users.sql
169173 \. docs/database/import/acos.sql
170174 \. docs/database/import/aros.sql
171175 \. docs/database/import/aros_acos.sql
172176
1731773. This will import the list of countries. It's used in profile.
174178
175179 \. docs/database/import/countries.sql
176180
1771814. 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:
178182
179183 \. docs/database/scripts/create_fill_langStats.sql
180184
181185
182186You 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:
183187
184188 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
185189 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
186190Expect this to take some time (dozens of minutes) and fill some disk space (several gigabytes).
187191
188192**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.
189193
190194
191195
192196
193197# Logging in
194198
195199Now you should be able to go to your local Tatoeba URL (http://tatoeba.dev/ in my case), and be able to log in.
196200
197201The default usernames are:
198202
199203* admin
200204* corpus_maintainer
201205* advanced_contributor
202206* contributor
203207* inactive
204208* spammer
205209
206210The default password for each user is '123456'.
207211
208212
209213#External services
210214
211215
212216 * autocompletion for tags is based on suggestd (TODO put link an explanation on how to compile/use it)
213217 * for Chinese/Cantonese the transliteration is generated by sinoparserd (TODO add more explanation)
214218 * language autodetection is based on tatodetect
215219
216220# Other Things to Install
217221
218222These can be ignored for local development of the code, but need to be installed in order to get the app fully operational.
219223
220224* imagick (for resizing images for profile avatars)
221225* Sphinx search engine
222226* Furigana
diff view generated by jsdifflib

Version at: 03/05/2014, 08:32

# 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

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

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: 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

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.