dcee7633 |
1 | ## How to make your kyberia run. |
2 | |
e22c5180 |
3 | 1. Install webserver. For example apache2 or lighthttpd (+php&mysql support) |
4 | 2. Instal db backend. mysql is supported so far. |
dcee7633 |
5 | 2. Create mysql account ( create user kyberia identified by "pass") |
6 | 3. Create database kyberia2 (as user kyberia) |
e22c5180 |
7 | 4. Download sql data from http://dev.kyberia.cz/-sql/ |
8 | 4. Import data (mysql -u kyberia -p kyberia2 < kyberia_...sql ) |
9 | 5. Clone code from git repository into your www-root ( XXX) |
10 | 7. Include kyberia.conf into your (apache?) conf. |
ab8ec5e5 |
11 | (dir /etc/apache2/sites-enabled in debian). Edit if needed. |
12 | 8. Maybe you will need some apache configuration tweaks (like a2enmod rewrite). |
e22c5180 |
13 | 9. Start webserver and backend (something like /etc/init.d/apache2 start, ...) |
14 | 10. Set DB login data in wwwroot/conf/config.inc |
dcee7633 |
15 | 11. Depends on your DNS, maybe add alias www.localhost to /etc/hosts file. |
16 | 12. Try it (open browser and go to your system_url address. "localhost" by default.) |
17 | 13. Find out why it is still not working. (check permisions, symlinks, directory names...) |
e22c5180 |
18 | 14. If you want full functionality, add scripts from cron directory to your www users crontab |
dcee7633 |
19 | |
20 | Warning, this effectively bypass www chroot. |
21 | 15. Enjoy;) |