Merge branch 'fixes' into main/rendor-staging
[ryzomcore.git] / web / public_php / webtt / docs / INSTALL
blob3137f86e9e8f963c61694736e288113d67caa3e0
1 1. Web-Based Translation Tool use ryzom translation pipeline, so you need to setup it first.
3 2. Change path/to/translation to your translation pipeline path in app/config/database.php
5 3. Add following VirtualHost config to your apache configuration.
7 <VirtualHost *:80>
8   DocumentRoot /path/to/webtt
9         <Directory /path/to/webtt>
10                 php_admin_value open_basedir none
11                 php_flag short_open_tag on
12                 php_value memory_limit 256M
13                 php_flag output_buffering on
14         </Directory>
15   ServerName webtt.your.domain
16 </VirtualHost>
18 4. Change permissions to tmp directory.
20 # chmod -R o+w webtt/app/tmp
22 5. Create MySQL database with default user and WebTT tables.
24 # mysql -uroot
25 CREATE DATABASE webtt2;
26 GRANT ALL ON webtt2.* TO webtt@localhost IDENTIFIED BY 'webtt77';
27 # cat db/webtt2.db | mysql -uwebtt -pwebtt77 webtt2
29 6. Go to http://webtt.your.domain and register new user for user access.
31 7. For administrator access, go to http://webtt.your.domain/admin and log in as admin/newpass