Version at: 13/04/2013, 14:45 vs. version at: 14/04/2013, 13:19
11NOTE: This is about installing the PHP version (i.e. current version) of Tatoeba.
22
33# Downloads
44
55## Required tools
66
77* Apache
88* PHP
99* MySQL
1010* SVN Client
1111
1212For those who are on Windows:
1313
1414* [XAMPP](http://www.apachefriends.org/en/xampp-windows.html) will do the trick for Apache/PHP/MySQL.
1515* [TortoiseSVN](http://tortoisesvn.net/downloads.html) for the SVN client
16
17For those who are on Macintosh or Linux:
18
19* [XAMPP](http://www.apachefriends.org/en/xampp.html) works, too.
1620
1721## Source code
1822
1923The source code is hosted on a platform called Assembla:
2024[https://www.assembla.com/code/tatoeba2/subversion/nodes](https://www.assembla.com/code/tatoeba2/subversion/nodes)
2125
2226Repository URL:
2327[https://subversion.assembla.com/svn/tatoeba2/](https://subversion.assembla.com/svn/tatoeba2/)
2428
2529URL you'll want to checkout:
2630[https://subversion.assembla.com/svn/tatoeba2/trunk/](https://subversion.assembla.com/svn/tatoeba2/trunk/)
2731
2832
2933# Configuration
3034
3135## Virtual host
3236
3337You may set up a virtual host. I personally use http://tatoeba.dev/ as my local URL.
3438
3539To find out how to set up a virtual host on a Macintosh using XAMPP see the following page.
3640
3741[http://f6design.com/journal/2012/03/11/configuring-virtualhosts-in-xampp-on-mac/]
3842
3943
4044**TODO** More details on how to do that.
4145
4246
4347## mod_rewrite
4448
4549You need to have mod_rewrite enabled, it's necessary for CakePHP.
4650
4751**TODO** More details on how to do that.
4852
4953
5054## app/config/core.php
5155
5256In the file `app/config/core.php`, put into comments the part about XCache.
5357
5458 /*
5559 Cache::config('default', array(
5660 'engine' => 'Xcache', //[required]
5761 'duration'=> 3600, //[optional]
5862 'probability'=> 100, //[optional]
5963 'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string
6064 'user' => 'user', //user from xcache.admin.user settings
6165 'password' => 'password', //plaintext password (xcache.admin.pass)
6266 ));
6367 Cache::config('_cake_core_', array(
6468 'engine' => 'Xcache', //[required]
6569 'duration'=> 3600, //[optional]
6670 'probability'=> 100, //[optional]
6771 'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string
6872 'user' => 'user', //user from xcache.admin.user settings
6973 'password' => 'password', //plaintext password (xcache.admin.pass)
7074 ));
7175 */
7276
7377And uncomment the line to use the "File" cache engine:
7478
7579`Cache::config('default', array('engine' => 'File'));`
7680
7781
7882
7983## app/config/database.php
8084
8185In the file `app/config/database.php`, set your login, password and database in the $default array.
8286
8387 var $default = array(
8488 'driver' => 'mysql',
8589 'persistent' => false,
8690 'host' => 'localhost',
8791 'login' => 'root',
8892 'password' => 'somepassword',
8993 'database' => 'tatoeba',
9094 'prefix' => '',
9195 'encoding' => 'utf8'
9296 );
9397
9498
9599## app/models/sentence.php
96100
97101Tatoeba uses some other external tools that you won't necessarily need. These tools are:
98102
99103* the search engine (Sphinx)
100104* the tools for romanization
101105
102106If 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`).
103107
104108line 274: uncomment "return array(1)"
105109
106110 public function getSeveralRandomIds($lang = 'und', $numberOfIdWanted = 10)
107111 {
108112 // Uncomment the line below if you don't have sphinx installed.
109113 return array(1);`
110114
111115line 847: uncomment "return false"
112116
113117 public function generateMetas(&$sentenceArray)
114118 {
115119 // Uncomment the line below you don't have the Chinese
116120 // romanization tools installed.
117121 return false;`
118122    
119123## Make the following directory writable.
120124
121125/app/tmp/cache/
122126
123127## For XAMPP (at least on a Mac)
124128
125129You'll need to up the default thread_stack from 64K to 256K.
126130(I tried 128K, but that wasn't enough.)
127131
128132/Applications/XAMPP/xamppfiles/etc/my.cnf
129133
130134thread_stack = 256K
131135
132136
133137# Database
134138
135139Now you need to create the database, and import the necessary things. The scripts you will need are in the `docs/database` folder.
136140
137141First, 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`.
138142
139143 CREATE DATABASE tatoeba
140144 USE tatoeba
141145
142146Then execute the following scripts.
143147
1441481. This will create all the tables (they will be empty).
145149
146150 \. docs/database/database_20130406.sql
147151
1481522. These will create a minimal user base (one user in each group), and the associated access rights for each user.
149153
150154 \. docs/database/import/groups.sql
151155 \. docs/database/import/users.sql
152156 \. docs/database/import/acos.sql
153157 \. docs/database/import/aros.sql
154158 \. docs/database/import/aros_acos.sql
155159
1561603. This will import the list of countries. It's used in profile.
157161
158162 \. docs/database/import/countries.sql
159163
160164**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.
161165
162166
163167
164168
165169# Logging in
166170
167171Now you should be able to go to your local Tatoeba URL (http://tatoeba.dev/ in my case), and be able to log in.
168172
169173The default usernames are:
170174
171175* admin
172176* corpus_maintainer
173177* advanced_contributor
174178* contributor
175179* inactive
176180* spammer
177181
178182The default password for each user is '123456'.
diff view generated by jsdifflib

Version at: 13/04/2013, 14:45

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

# Downloads

## Required tools

* Apache
* PHP
* MySQL
* SVN Client

For those who are on Windows:

* [XAMPP](http://www.apachefriends.org/en/xampp-windows.html) will do the trick for Apache/PHP/MySQL.
* [TortoiseSVN](http://tortoisesvn.net/downloads.html) for the SVN client

## 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/]


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


## mod_rewrite

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

**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 274: 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 847: 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.

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

**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'.

version at: 14/04/2013, 13:19

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

# Downloads

## Required tools

* Apache
* PHP
* MySQL
* SVN Client

For those who are on Windows:

* [XAMPP](http://www.apachefriends.org/en/xampp-windows.html) will do the trick for Apache/PHP/MySQL.
* [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/]


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


## mod_rewrite

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

**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 274: 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 847: 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.

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

**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'.

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.