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