Version at: 13/04/2013, 13:23 vs. version at: 13/04/2013, 13:25 | ||
---|---|---|
1 | 1 | NOTE: This is about installing the PHP version (i.e. current version) of Tatoeba. |
2 | 2 | |
3 | 3 | # Downloads |
4 | 4 | |
5 | 5 | ## Required tools |
6 | 6 | |
7 | 7 | * Apache |
8 | 8 | * PHP |
9 | 9 | * MySQL |
10 | 10 | * SVN Client |
11 | 11 | |
12 | 12 | For those who are on Windows: |
13 | 13 | |
14 | 14 | * [XAMPP](http://www.apachefriends.org/en/xampp-windows.html) will do the trick for Apache/PHP/MySQL. |
15 | 15 | * [TortoiseSVN](http://tortoisesvn.net/downloads.html) for the SVN client |
16 | 16 | |
17 | 17 | ## Source code |
18 | 18 | |
19 | 19 | The source code is hosted on a platform called Assembla: |
20 | 20 | [https://www.assembla.com/code/tatoeba2/subversion/nodes](https://www.assembla.com/code/tatoeba2/subversion/nodes) |
21 | 21 | |
22 | 22 | Repository URL: |
23 | 23 | [https://subversion.assembla.com/svn/tatoeba2/](https://subversion.assembla.com/svn/tatoeba2/) |
24 | 24 | |
25 | 25 | URL you'll want to checkout: |
26 | 26 | [https://subversion.assembla.com/svn/tatoeba2/trunk/](https://subversion.assembla.com/svn/tatoeba2/trunk/) |
27 | 27 | |
28 | 28 | |
29 | 29 | # Configuration |
30 | 30 | |
31 | 31 | ## Virtual host |
32 | 32 | |
33 | 33 | You may set up a virtual host. I personally use http://tatoeba.dev/ as my local URL. |
34 | 34 | |
35 | 35 | **TODO** More details on how to do that. |
36 | 36 | |
37 | 37 | |
38 | 38 | ## mod_rewrite |
39 | 39 | |
40 | 40 | You need to have mod_rewrite enabled, it's necessary for CakePHP. |
41 | 41 | |
42 | 42 | **TODO** More details on how to do that. |
43 | 43 | |
44 | 44 | |
45 | ## app/core/config.php | |
45 | ## app/config/core.php | |
46 | 46 | |
47 | 47 | In the file `app/config/core.php`, put into comments the part about XCache. |
48 | 48 | |
49 | 49 | /* |
50 | 50 | Cache::config('default', array( |
51 | 51 | 'engine' => 'Xcache', //[required] |
52 | 52 | 'duration'=> 3600, //[optional] |
53 | 53 | 'probability'=> 100, //[optional] |
54 | 54 | 'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string |
55 | 55 | 'user' => 'user', //user from xcache.admin.user settings |
56 | 56 | 'password' => 'password', //plaintext password (xcache.admin.pass) |
57 | 57 | )); |
58 | 58 | Cache::config('_cake_core_', array( |
59 | 59 | 'engine' => 'Xcache', //[required] |
60 | 60 | 'duration'=> 3600, //[optional] |
61 | 61 | 'probability'=> 100, //[optional] |
62 | 62 | 'prefix' => Inflector::slug(APP_DIR) . '_', //[optional] prefix every cache file with this string |
63 | 63 | 'user' => 'user', //user from xcache.admin.user settings |
64 | 64 | 'password' => 'password', //plaintext password (xcache.admin.pass) |
65 | 65 | )); |
66 | 66 | */ |
67 | 67 | |
68 | 68 | And uncomment the line to use the "File" cache engine: |
69 | 69 | |
70 | 70 | `Cache::config('default', array('engine' => 'File'));` |
71 | 71 | |
72 | 72 | |
73 | 73 | |
74 | ## app/core/database.php | |
74 | ## app/config/database.php | |
75 | 75 | |
76 | In the file `app/core/database.php`, set your login, password and database in the $default array. | |
76 | In the file `app/config/database.php`, set your login, password and database in the $default array. | |
77 | 77 | |
78 | 78 | var $default = array( |
79 | 79 | 'driver' => 'mysql', |
80 | 80 | 'persistent' => false, |
81 | 81 | 'host' => 'localhost', |
82 | 82 | 'login' => 'root', |
83 | 83 | 'password' => 'somepassword', |
84 | 84 | 'database' => 'tatoeba', |
85 | 85 | 'prefix' => '', |
86 | 86 | 'encoding' => 'utf8' |
87 | 87 | ); |
88 | 88 | |
89 | 89 | |
90 | 90 | ## app/models/sentence.php |
91 | 91 | |
92 | 92 | Tatoeba uses some other external tools that you won't necessarily need. These tools are: |
93 | 93 | |
94 | 94 | * the search engine (Sphinx) |
95 | 95 | * the tools for romanization |
96 | 96 | |
97 | 97 | 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`). |
98 | 98 | |
99 | 99 | line 274: uncomment "return array(1)" |
100 | 100 | |
101 | 101 | public function getSeveralRandomIds($lang = 'und', $numberOfIdWanted = 10) |
102 | 102 | { |
103 | 103 | // Uncomment the line below if you don't have sphinx installed. |
104 | 104 | return array(1);` |
105 | 105 | |
106 | 106 | line 847: uncomment "return false" |
107 | 107 | |
108 | 108 | public function generateMetas(&$sentenceArray) |
109 | 109 | { |
110 | 110 | // Uncomment the line below you don't have the Chinese |
111 | 111 | // romanization tools installed. |
112 | 112 | return false;` |
113 | 113 | |
114 | 114 | |
115 | 115 | # Database |
116 | 116 | |
117 | 117 | Now you need to create the database, and import the necessary things. The scripts you will need are in the `docs/database` folder. |
118 | 118 | |
119 | 119 | 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`. |
120 | 120 | |
121 | 121 | CREATE DATABASE tatoeba |
122 | 122 | USE tatoeba |
123 | 123 | |
124 | 124 | Then execute the following scripts. |
125 | 125 | |
126 | 126 | 1. This will create all the tables (they will be empty). |
127 | 127 | |
128 | 128 | \. docs/database/database_20130406.sql |
129 | 129 | |
130 | 130 | 2. These will create a minimal user base (one user in each group), and the associated access rights for each user. |
131 | 131 | |
132 | 132 | \. docs/database/import/groups.sql |
133 | 133 | \. docs/database/import/users.sql |
134 | 134 | \. docs/database/import/acos.sql |
135 | 135 | \. docs/database/import/aros.sql |
136 | 136 | \. docs/database/import/aros_acos.sql |
137 | 137 | |
138 | 138 | 3. This will import the list of countries. It's used in profile. |
139 | 139 | |
140 | 140 | \. docs/database/import/countries.sql |
141 | 141 | |
142 | 142 | **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. |
143 | 143 | |
144 | 144 | |
145 | 145 | # Logging in |
146 | 146 | |
147 | 147 | Now you should be able to go to your local Tatoeba URL (http://tatoeba.dev/ in my case), and be able to log in. |
148 | 148 | |
149 | 149 | The default usernames are: |
150 | 150 | |
151 | 151 | * admin |
152 | 152 | * corpus_maintainer |
153 | 153 | * advanced_contributor |
154 | 154 | * contributor |
155 | 155 | * inactive |
156 | 156 | * spammer |
157 | 157 | |
158 | 158 | The default password for each user is '123456'. |
diff view generated by jsdifflib |
Version at: 13/04/2013, 13:23
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. **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/core/config.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/core/database.php In the file `app/core/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;` # 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: 13/04/2013, 13:25
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. **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;` # 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'.