Version at: 02/05/2015, 18:16 vs. version at: 02/05/2015, 18:20
11# How to Install Tatoeba
22
33Introduction
44---------------
55
66Unless 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.
77
88If 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.
99
1010
1111Required tools
1212------------------
1313
1414You will need to install the following:
1515
1616* Apache
1717* PHP 5.3
1818* MySQL
1919* Git client
2020
2121#### Windows users
2222
2323* [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.
2424* You can use [Github for Windows](https://windows.github.com/) as your Git client.
2525
2626#### Mac or Linux users
2727
2828* [XAMPP](http://www.apachefriends.org/en/xampp.html) works, too.
2929
3030
3131Source code
3232--------------
3333
3434Clone our [Git repository](https://github.com/Tatoeba/tatoeba2). You can use the GitHub GUI or this command:
3535
3636 git clone https://github.com/Tatoeba/tatoeba2.git
3737
3838On Windows, make sure that your local repository is stored under xampp\htdocs (for example, c:\xampp\htdocs). Otherwise, you will not have access to it.
3939
4040Virtual host
4141---------------
4242
4343If 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/**.
4444
4545The 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".
4646
4747If 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.
4848
4949On Mac using XAMPP:
5050
5151* [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/)
5252
5353On Windows using XAMPP:
5454
5555* [http://sawmac.com/xampp/virtualhosts/](http://sawmac.com/xampp/virtualhosts/)
5656* [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/)
5757* [https://www.youtube.com/watch?v=n9BB_-VLoaY](https://www.youtube.com/watch?v=n9BB_-VLoaY)
5858
5959Briefly, you will need to edit your httpd-vhosts.conf and hosts files.
6060
6161You will add a section like this to the end of the httpd-vhosts.conf file:
6262
6363
6464 <VirtualHost *:80>
6565 DocumentRoot "C:\xampp\htdocs"
6666 ServerName localhost
6767 </VirtualHost>
6868
6969 <VirtualHost *:80>
7070 DocumentRoot "C:\xampp\htdocs\tatoeba2"
7171 ServerName tatoeba.dev
7272 <Directory "C:\xampp\htdocs\tatoeba2">
7373 Order allow,deny
7474 Allow from all
7575 </Directory>
7676 </VirtualHost>
7777
7878
7979To edit your hosts file on Windows, make sure that:
8080
8181* your folder view options are not set up to hide system files (or you won't be able to see the hosts file)
8282* you are editing as administrator (or you won't be able to save your changes)
8383
8484Note that you will need to make sure that your hosts file contains the domain name that you want to use for your virtual host. For instance:
8585
8686 127.0.0.1 tatoeba.dev
8787
8888
8989Create the config files
9090--------------------------
9191
9292### core.php
9393
9494Copy the file `app/config/core.php.template` and name it `core.php`.
9595
9696Make sure you have the search and autotranscription disabled.
9797
9898 Configure::write('Search.enabled', false);
9999 Configure::write('AutoTranscriptions.enabled', false);
100100
101101
102102### database.php
103103
104104Copy the file `app/config/database.php.template` and name it `database.php`.
105105
106106In the file `app/config/database.php`, set your login, password and database in the $default array. If you want, you can set the value of 'password' to an empty string.
107107
108108 var $default = array(
109109 'driver' => 'mysql',
110110 'persistent' => false,
111111 'host' => 'localhost',
112112 'login' => 'root',
113113 'password' => 'somepassword',
114114 'database' => 'tatoeba',
115115 'prefix' => '',
116116 'encoding' => 'utf8'
117117 );
118118
119119You don't have to worry about the rest of the file at this stage.
120120
121121
122122
123123Database
124124-------------------
125125
126126### Create the database
127127
128128First, 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`.
129129
130130Make sure you have started Apache and MySQL from the XAMPP Control Panel. Now you can issue "mysql -u root" to start MySQL from a prompt. Issue these commands:
131131
132132 CREATE DATABASE tatoeba;
133133 USE tatoeba;
134134
135135### Create the tables and import the data
136136
137137#### From Trang's database
138138
139139The easiest solution is to download the copy of [Trang's local database](https://dl.dropboxusercontent.com/u/953908/tatoeba/tatoeba_database.zip) (**69 MB**). It contains data from 2010, that is around 600k sentences.
140140
141141You can import the database with the command, which takes several minutes to run:
142142
143143 mysql -u username [-p] database_name < tatoeba_database.sql
144144
145145Within this database, the passwords for all users have been set to `123`.
146146
147147You may need to execute some of the scripts in docs/database/updates if they have not been executed since the last time that Trang exported her database. Ask her.
148148
149149#### From the scripts in docs/database
150150
151151Another solution is to execute all the scripts in this order:
152152
153153* scripts in `docs/database/tables`
154154* scripts in `docs/database/triggers`
155155* scripts in `docs/database/import`
156156
157157From there you will be able to log in with `123456` with one of the following usernames:
158158
159159* admin
160160* corpus_maintainer
161161* advanced_contributor
162162* contributor
163163* inactive
164164* spammer
165165
166166
167167Other things you may have to configure
168168----------------------------------------------
169169    
170### acl file
171
1721) Create a file named acl.bat in your root folder.
173
1742) Copy-paste this code into the file:
175
176 CALL cake schema create DbAcl
177
178 for /f "tokens=*" %%a in (docs/database/acl/acos) do (
179 CALL %%a
180 )
181
182 for /f "tokens=*" %%a in (docs/database/acl/aros) do (
183 CALL %%a
184 )
185
186 for /f "tokens=*" %%a in (docs/database/acl/aros_acos) do (
187 CALL %%a
188 )
189
190 PAUSE
191
1923) Run the batch file.
193
1944) Say "yes" and "yes". It will prompt you to drop the tables and create new ones.
195
196Then you just wait. The script executes the commands in the aco, aro and aros_acos file in docs/database/acl. These files define the permissions.
197
170198### tmp folder writable
171199
172200Make sure your `/app/tmp/cache` and all folders in it (models, persistent, views) are writable.
173201
174202### thread_stack for XAMPP on a Mac
175203
176204You'll need to up the default thread_stack from 64K to 256K.
177205`/Applications/XAMPP/xamppfiles/etc/my.cnf`
178206`thread_stack = 256K`
179207
180208### short_open_tag = On
181209
182210Make sure `<?` is allowed as an open tag. In your `php.ini`, check that you have:
183211
184212 short_open_tag = On
185213
186214Other Things to Install
187215--------------------------
188216
189217These can be ignored for local development of the code, but need to be installed in order to get the app fully operational.
190218
191219* imagick (for resizing images for profile avatars)
192220* Sphinx search engine
193221* Furigana
194222* autocompletion for tags is based on suggestd (TODO put link an explanation on how to compile/use it)
195223* for Chinese/Cantonese the transliteration is generated by sinoparserd (TODO add more explanation)
196224* language autodetection is based on tatodetect
diff view generated by jsdifflib

Version at: 02/05/2015, 18:16

# 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

#### 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). You can use the GitHub GUI or this command:

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

On Windows, make sure that your local repository is stored under xampp\htdocs (for example, c:\xampp\htdocs). Otherwise, you will not have access to it. 

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

* [http://sawmac.com/xampp/virtualhosts/](http://sawmac.com/xampp/virtualhosts/)
* [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/)
* [https://www.youtube.com/watch?v=n9BB_-VLoaY](https://www.youtube.com/watch?v=n9BB_-VLoaY)

Briefly, you will need to edit your httpd-vhosts.conf and hosts files. 

You will add a section like this to the end of the httpd-vhosts.conf file:


    <VirtualHost *:80>
        DocumentRoot "C:\xampp\htdocs"
        ServerName localhost
    </VirtualHost>
 
    <VirtualHost *:80>
      DocumentRoot "C:\xampp\htdocs\tatoeba2"
      ServerName tatoeba.dev
      <Directory "C:\xampp\htdocs\tatoeba2">
        Order allow,deny
        Allow from all
      </Directory>
    </VirtualHost>


To edit your hosts file on Windows, make sure that:

* your folder view options are not set up to hide system files (or you won't be able to see the hosts file)
* you are editing as administrator (or you won't be able to save your changes) 

Note that you will need to make sure that your hosts file contains the domain name that you want to use for your virtual host. For instance:

    127.0.0.1    tatoeba.dev


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. If you want, you can set the value of 'password' to an empty string.

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

Make sure you have started Apache and MySQL from the XAMPP Control Panel. Now you can issue "mysql -u root" to start MySQL from a prompt. Issue these commands:

    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.zip) (**69 MB**). It contains data from 2010, that is around 600k sentences.

You can import the database with the command, which takes several minutes to run:

    mysql -u username [-p] database_name < tatoeba_database.sql

Within this database, the passwords for all users have been set to `123`.

You may need to execute some of the scripts in docs/database/updates if they have not been executed since the last time that Trang exported her database. Ask her.

#### 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` and all folders in it (models, persistent, views) are writable. 

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

### short_open_tag = On

Make sure `<?` is allowed as an open tag. In your `php.ini`, check that you have:

    short_open_tag = On

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 

version at: 02/05/2015, 18:20

# 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

#### 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). You can use the GitHub GUI or this command:

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

On Windows, make sure that your local repository is stored under xampp\htdocs (for example, c:\xampp\htdocs). Otherwise, you will not have access to it. 

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

* [http://sawmac.com/xampp/virtualhosts/](http://sawmac.com/xampp/virtualhosts/)
* [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/)
* [https://www.youtube.com/watch?v=n9BB_-VLoaY](https://www.youtube.com/watch?v=n9BB_-VLoaY)

Briefly, you will need to edit your httpd-vhosts.conf and hosts files. 

You will add a section like this to the end of the httpd-vhosts.conf file:


    <VirtualHost *:80>
        DocumentRoot "C:\xampp\htdocs"
        ServerName localhost
    </VirtualHost>
 
    <VirtualHost *:80>
      DocumentRoot "C:\xampp\htdocs\tatoeba2"
      ServerName tatoeba.dev
      <Directory "C:\xampp\htdocs\tatoeba2">
        Order allow,deny
        Allow from all
      </Directory>
    </VirtualHost>


To edit your hosts file on Windows, make sure that:

* your folder view options are not set up to hide system files (or you won't be able to see the hosts file)
* you are editing as administrator (or you won't be able to save your changes) 

Note that you will need to make sure that your hosts file contains the domain name that you want to use for your virtual host. For instance:

    127.0.0.1    tatoeba.dev


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. If you want, you can set the value of 'password' to an empty string.

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

Make sure you have started Apache and MySQL from the XAMPP Control Panel. Now you can issue "mysql -u root" to start MySQL from a prompt. Issue these commands:

    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.zip) (**69 MB**). It contains data from 2010, that is around 600k sentences.

You can import the database with the command, which takes several minutes to run:

    mysql -u username [-p] database_name < tatoeba_database.sql

Within this database, the passwords for all users have been set to `123`.

You may need to execute some of the scripts in docs/database/updates if they have not been executed since the last time that Trang exported her database. Ask her.

#### 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
----------------------------------------------
	
### acl file

1) Create a file named acl.bat in your root folder.

2) Copy-paste this code into the file:

    CALL cake schema create DbAcl

    for /f "tokens=*" %%a in (docs/database/acl/acos) do (
        CALL %%a
    )

    for /f "tokens=*" %%a in (docs/database/acl/aros) do (
        CALL %%a
    )

    for /f "tokens=*" %%a in (docs/database/acl/aros_acos) do (
        CALL %%a
    )

    PAUSE

3) Run the batch file.

4) Say "yes" and "yes". It will prompt you to drop the tables and create new ones.

Then you just wait. The script executes the commands in the aco, aro and aros_acos file in docs/database/acl. These files define the permissions.

### tmp folder writable

Make sure your `/app/tmp/cache` and all folders in it (models, persistent, views) are writable. 

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

### short_open_tag = On

Make sure `<?` is allowed as an open tag. In your `php.ini`, check that you have:

    short_open_tag = On

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.