Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Great tutorial!! Many thanks for it, you explained it very well. I managed to run it on Ubuntu 13.04. Do you know tatoeba.org? It’s an online multilingual sentence aligner server. They also share language database. I want to make an offline version of it but I don’t know how to do it. I’m just a beginner. I found two sources on the net but they are not very well explained or I don’t have enough knowledge to master it. Here the sources: Tatoeba shared files http://tatoeba.org/app/webroot/files/downloads/ A tutorial about how to setup offline server http://lilyx.net/2011/07/21/extracting-multilingual-parallel-senteces-from-tatoeba-com/ Another CakePHP tatoeba installation guide http://en.wiki.tatoeba.org/articles/show/install-tatoeba-php But CakePHP they used is old, so it gives me some errors. “cat” commands in the link are not completely visible but I found these: cat links.csv | while read -r id1 id2; do echo “insert into sentences_translations (sentence_id, translation_id) values ($id1, $id2);”; done | mysql -u root -p ‘tatoeba’
cat sentences.csv | while read -r id lang text; do echo “insert into sentences (id, lang, text) values (‘$id’, ‘$lang’, ‘${text//'/'}’);”; done | mysql -u root -p ‘tatoeba’
The former one worked ok but latter gave me an error in the end.
Would you please help me about how to setup offline version of tatoeba.org in my computer?
Just an add-on. If you are using Ubuntu 14 and having problems accessing Cakephp Controllers, you will need to add this line into the ‘/etc/apache2/apache2.conf’ file :
IncludeOptional sites-available/.conf*
After DocumentRoot /var/www/html
Insert the code
<Directory /var/www/html/> Options Indexes FollowSymLinks Includes AllowOverride All Order allow,deny Allow from all </Directory>
This comment has been deleted