Version at: 29/08/2015, 16:08 vs. version at: 10/04/2016, 16:41
11# How to Install Tatoeba
22
3Introduction
4---------------
5
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.
7
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:
15
16* Apache
17* PHP 5.3
18* MySQL
19* Git client
20
21#### Windows users
22
23* [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.
24* You can use [Github for Windows](https://windows.github.com/) as your Git client.
25
26#### Mac or Linux users
27
28* [XAMPP](http://www.apachefriends.org/en/xampp.html) works, too.
29
30
31Source code
32--------------
33
34Clone our [Git repository](https://github.com/Tatoeba/tatoeba2). You can use the GitHub GUI or this command:
35
36 git clone https://github.com/Tatoeba/tatoeba2.git
37
38On 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.
39
40Virtual host
41---------------
42
43If 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/**.
44
45The 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".
46
47If 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.
48
49On Mac using XAMPP:
50
51* [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/)
52
53On Windows using XAMPP:
54
55* [http://sawmac.com/xampp/virtualhosts/](http://sawmac.com/xampp/virtualhosts/)
56* [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/)
57* [https://www.youtube.com/watch?v=n9BB_-VLoaY](https://www.youtube.com/watch?v=n9BB_-VLoaY)
58
59Briefly, you will need to edit your httpd-vhosts.conf and hosts files.
60
61You will add a section like this to the end of the httpd-vhosts.conf file:
62
63
64 <VirtualHost *:80>
65 DocumentRoot "C:\xampp\htdocs"
66 ServerName localhost
67 </VirtualHost>
68
69 <VirtualHost *:80>
70 DocumentRoot "C:\xampp\htdocs\tatoeba2"
71 ServerName tatoeba.dev
72 <Directory "C:\xampp\htdocs\tatoeba2">
73 Order allow,deny
74 Allow from all
75 </Directory>
76 </VirtualHost>
77
78
79To edit your hosts file on Windows, make sure that:
80
81* your folder view options are not set up to hide system files (or you won't be able to see the hosts file)
82* you are editing as administrator (or you won't be able to save your changes)
83
84Note 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:
85
86 127.0.0.1 tatoeba.dev
87
88
89Create the config files
90--------------------------
91
92### core.php
93
94Copy the file `app/config/core.php.template` and name it `core.php`.
95
96Make sure you have the search and autotranscription disabled.
97
98 Configure::write('Search.enabled', false);
99 Configure::write('AutoTranscriptions.enabled', false);
100
101
102### database.php
103
104Copy the file `app/config/database.php.template` and name it `database.php`.
105
106In 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.
107
108 var $default = array(
109 'driver' => 'mysql',
110 'persistent' => false,
111 'host' => 'localhost',
112 'login' => 'root',
113 'password' => 'somepassword',
114 'database' => 'tatoeba',
115 'prefix' => '',
116 'encoding' => 'utf8'
117 );
118
119You don't have to worry about the rest of the file at this stage.
120
121
122
123Database
124-------------------
125
126### Create the database
127
128First, 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`.
129
130Make 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:
131
132 CREATE DATABASE tatoeba;
133 USE tatoeba;
134
135### Create the tables and import the data
136
137#### From Trang's database
138
139The easiest solution is to download the copy of [Trang's local database](https://dl.dropboxusercontent.com/u/953908/tatoeba/tatoeba_database.zip) (**60 MB**). It contains data from 2010, that is around 600k sentences.
140
141You can import the database with the command, which takes several minutes to run:
142
143 mysql -u username [-p] database_name < tatoeba_database.sql
144
145Within this database, the passwords for all users have been set to `123`.
146
147You 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.
148
149#### From the scripts in docs/database
150
151Another solution is to execute all the scripts in this order:
152
153* scripts in `docs/database/tables`
154* scripts in `docs/database/triggers`
155* scripts in `docs/database/import`
156
157From there you will be able to log in with `123456` with one of the following usernames:
158
159* admin
160* corpus_maintainer
161* advanced_contributor
162* contributor
163* inactive
164* spammer
165
166
167Other things you may have to configure
168----------------------------------------------
169    
170### acl file
171
1721) Create a script in your root folder. For instance, on Windows, you could call it acl.bat.
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) Add these lines to the docs/database/acl/aros file:
193
194 cake acl create aro Group.1 User.5
195 cake acl create aro Group.2 User.6
196
197These will give you two users, TRANG and MUIRIEL. TRANG (User.5) will have the permissions of an admin (Group.1), and MUIRIEL (User.6) will have the permissions of a corpus maintainer (Group.2) You can always add more lines later to give you additional users.
198
1994) Make sure that cake/console/cake is on your path.
200
2015) Run the batch file.
202
2036) Say "yes" and "yes". It will prompt you to drop the tables and create new ones. The script executes the commands in the aco, aro and aros_acos file in docs/database/acl. These files define the permissions.
204
205### tmp folder writable
206
207Make sure your `/app/tmp/cache` and all folders in it (models, persistent, views) are writable.
208
209### thread_stack for XAMPP on a Mac
210
211You'll need to up the default thread_stack from 64K to 256K.
212`/Applications/XAMPP/xamppfiles/etc/my.cnf`
213`thread_stack = 256K`
214
215### short_open_tag = On
216
217Make sure `<?` is allowed as an open tag. In your `php.ini`, check that you have:
218
219 short_open_tag = On
220
221Other Things to Install
222--------------------------
223
224These can be ignored for local development of the code, but need to be installed in order to get the app fully operational.
225
226* imagick (for resizing images for profile avatars)
227* Sphinx search engine
228* Furigana
229* autocompletion for tags is based on suggestd (TODO put link an explanation on how to compile/use it)
230* for Chinese/Cantonese the transliteration is generated by sinoparserd (TODO add more explanation)
231* language autodetection is based on tatodetect
3This article has been moved to [https://github.com/Tatoeba/tatoeba2/wiki/How-to-install-Tatoeba](https://github.com/Tatoeba/tatoeba2/wiki/How-to-install-Tatoeba)
diff view generated by jsdifflib

Version at: 29/08/2015, 16:08

# 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) (**60 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 script in your root folder. For instance, on Windows, you could call it acl.bat.

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) Add these lines to the docs/database/acl/aros file:

    cake acl create aro Group.1 User.5
    cake acl create aro Group.2 User.6

These will give you two users, TRANG and MUIRIEL. TRANG (User.5) will have the permissions of an admin (Group.1), and MUIRIEL (User.6) will have the permissions of a corpus maintainer (Group.2) You can always add more lines later to give you additional users.

4) Make sure that cake/console/cake is on your path. 

5) Run the batch file.

6) Say "yes" and "yes". It will prompt you to drop the tables and create new ones. 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 

version at: 10/04/2016, 16:41

# How to Install Tatoeba

This article has been moved to [https://github.com/Tatoeba/tatoeba2/wiki/How-to-install-Tatoeba](https://github.com/Tatoeba/tatoeba2/wiki/How-to-install-Tatoeba)

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.