blob: cec3ebbab368665f87b550538fdf1900ca4103d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
How to install Kanboard on Ubuntu?
==================================
Ubuntu Trusty 14.04 LTS
-----------------------
Install Apache and PHP:
```bash
sudo apt-get update
sudo apt-get install -y php5 php5-sqlite php5-gd php5-json php5-mcrypt unzip
```
In case your web server was running restart to make sure the php modules are reloaded:
```bash
service apache2 restart
```
Install Kanboard:
```bash
cd /var/www/html
sudo wget http://kanboard.net/kanboard-latest.zip
sudo unzip kanboard-latest.zip
sudo chown -R www-data:www-data kanboard/data
sudo rm kanboard-latest.zip
```
|